import React from 'react'; export default props => { if (props.error) { return (
Error!{' '}
); } if (props.pastDelay) { return
Loading...
; } return null; };