signal-desktop/ts/components/conversation/Reply.tsx
Scott Nonnenberg 23537546fe
Big refactor: ts/ directory for all typescript, including react
Split out test-specific and general utility react components too.

And moved our test/legacy* files for the Style Guide into a styleguide/
subdirectory of test/.

I think we'll be able to live in this directory structure for a while.
2018-04-05 15:30:40 -07:00

14 lines
234 B
TypeScript

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>
);
}
}