type GreetingProps = { name: string };class Greeting extends React.Component { constructor(props: GreetingProps) { super(props); // some initialisation stuff } render() { const {name} = this.props; return (
{name}
); }}