diff options
author | Eugene <eug-vs@keemail.me> | 2020-01-06 00:22:12 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-06 00:22:12 +0000 |
commit | 4d3d3ea44eb1ef440c4ba81562f3738ab5e09fd2 (patch) | |
tree | af02da5b596a9ac84fdd2871524e5474fe0a8aa4 /src/components/Loading/Loading.js | |
parent | 4e82e018e1fd88e24886362db864ae7d0d73cc7b (diff) | |
parent | 644bb29f796372860c57bf6c7fc8f3f5be51d1e8 (diff) | |
download | chrono-cube-ui-4d3d3ea44eb1ef440c4ba81562f3738ab5e09fd2.tar.gz |
Merge pull request #26 from Eug-VS/scoreboard-render
Refine Scoreboard
Diffstat (limited to 'src/components/Loading/Loading.js')
-rw-r--r-- | src/components/Loading/Loading.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/components/Loading/Loading.js b/src/components/Loading/Loading.js new file mode 100644 index 0000000..632142b --- /dev/null +++ b/src/components/Loading/Loading.js @@ -0,0 +1,32 @@ +import React from 'react'; + +import { + Card, + CardHeader, +} from "@material-ui/core"; + +import { makeStyles } from "@material-ui/core/styles"; +import CircularProgress from '@material-ui/core/CircularProgress'; + + +const useStyles = makeStyles(theme => ({ + root: { + padding: theme.spacing(1), + }, +})); + +const Loading = () => { + const classes = useStyles(); + + return ( + <Card elevation={5} className={classes.root}> + <CardHeader + avatar={(<CircularProgress color="secondary" />)} + title="Loading" + subheader="Please, wait." + /> + </Card> + ) +}; + +export default Loading; |