1import * as React from 'react';
2interface PersonProps {
3 username: string;
4}
5
6function Person(props: PersonProps): React.ReactElement {
7 return (
8 <div>{props.username}</div>
9 )
10}
1function Person(props: PersonProps): React.ReactElement {
2 return (
3 <div>{props.username}</div>
4 )
5}