Reply -> Quote

This commit is contained in:
Scott Nonnenberg 2018-04-09 16:38:40 -07:00
parent 2def6afe45
commit b4ce79cac0
No known key found for this signature in database
GPG key ID: 5F82280C35134661
4 changed files with 7 additions and 5 deletions

View file

@ -0,0 +1,14 @@
import React from 'react';
interface Props { name: string; }
interface State { count: number; }
export class Reply extends React.Component<Props, State> {
public render() {
return (
<div>Placeholder</div>
);
}
}