You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/js/react/conversation/Reply.tsx

15 lines
238 B
TypeScript

import React from 'react';
interface IProps { name: string; }
interface IState { count: number; }
export class Reply extends React.Component<IProps, IState> {
public render() {
return (
<div>Placeholder</div>
);
}
}