import * as React from 'react'; interface PersonProps { username: string; } function Person(props: PersonProps): React.ReactElement { return ( <div>{props.username}</div> ) }