You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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>
|
|
);
|
|
}
|
|
}
|