15 lines
238 B
TypeScript
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>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|