import React from 'react' interface Props {} interface States {} export default class Name extends React.Component { constructor(props: Props) { super(props) } render() { return ( ) } }