// @flow import React from 'react'; type Props = { message: ?string, }; const BusyIndicator = (props: Props) => ( {props.message} ); export default BusyIndicator;