2018-04-03 15:56:12 -07:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
|
2018-04-05 12:21:22 -07:00
|
|
|
interface Props { name: string; }
|
2018-04-03 15:56:12 -07:00
|
|
|
|
2018-04-05 12:21:22 -07:00
|
|
|
interface State { count: number; }
|
2018-04-03 15:56:12 -07:00
|
|
|
|
2018-04-05 12:21:22 -07:00
|
|
|
export class Reply extends React.Component<Props, State> {
|
2018-04-03 15:56:12 -07:00
|
|
|
public render() {
|
|
|
|
return (
|
|
|
|
<div>Placeholder</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|