const Person = props =>
; const PersonHint = props => (

{props.person.name}

); const PeopleList = props => (
{props.people.length ? ( ) : (

No people found.

)}
); export { PeopleList }; export default Person;