2018-08-23 09:46:14 -04:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
|
|
export default props => {
|
|
|
|
|
if (props.error) {
|
2018-09-17 00:09:14 -04:00
|
|
|
return <div align="center">Error</div>;
|
2018-08-23 09:46:14 -04:00
|
|
|
}
|
2018-09-15 03:01:03 -04:00
|
|
|
if (props.pastDelay) {
|
|
|
|
|
return <div align="center">Loading...</div>;
|
|
|
|
|
}
|
|
|
|
|
return null;
|
2018-08-23 09:46:14 -04:00
|
|
|
};
|