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