type props = { thisOneProp?: boolean //this sets this prop as optional in flow } const ResponseOption = ({ thisOneProp }:props): React$Element<'div'>) => { return(<div></div>) }