signal-desktop/js/react/conversation/Reply.tsx
Scott Nonnenberg 1326b26585
Full styleguide now available via yarn styleguide
Due to a number of hacks, the style guide can be used to show Backbone
views. This will allow a smooth path from the old way of doing things to
the new.
2018-04-04 16:08:38 -07:00

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