I am Foo! Pleasure to meet you.
6 |bear with us ...
22 |50 | // We are a most promising species, Mr. Spock, as predators go. Did you know that? I I 51 | // frequently have my doubts. I dont. Not any more. And maybe in a thousand 52 | // years or so will 53 | // be able to prove it. 54 | //
55 | //- Captain Kirk
56 | //Loading User Information
59 | // ) : ( 60 | //{JSON.stringify(CaptainKirkBio)}
61 | // )} 62 | //Foo is loading
} 64 | //user page
; 4 | -------------------------------------------------------------------------------- /src/modules/common/PageLoader.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import PropTypes from 'prop-types'; 3 | // Material UI 4 | import { withStyles } from '@material-ui/core/styles'; 5 | import CircularProgress from '@material-ui/core/CircularProgress'; 6 | 7 | const styles = theme => ({ 8 | progress: { 9 | display: 'flex', 10 | flexDirection: 'column', 11 | alignItems: 'center', 12 | justifyContent: 'center', 13 | height: '100vh', 14 | margin: theme.spacing.unit * 5, 15 | }, 16 | }); 17 | 18 | const PageLoader = ({ classes }) => { 19 | return ( 20 |