jsxfunction Welcome(props) { return <h1>Hello, {props.name}</h1>; }
tsconst Welcome: React.FC<IProps> = (props) => { return <h1>Hello, {props.name}</h1>; }
React.FC