From 2e9e20414c2ea49d7f40bcff09b89897e13fd2f4 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sat, 21 Mar 2020 15:32:02 +0300 Subject: chore: migrate components to Typescript --- src/components/Loading/Loading.js | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/components/Loading/Loading.js (limited to 'src/components/Loading/Loading.js') diff --git a/src/components/Loading/Loading.js b/src/components/Loading/Loading.js deleted file mode 100644 index e8793cc..0000000 --- a/src/components/Loading/Loading.js +++ /dev/null @@ -1,33 +0,0 @@ -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), - background: theme.palette.background.elevation2, - }, -})); - -const Loading = () => { - const classes = useStyles(); - - return ( - - )} - title="Loading" - subheader="Please, wait." - /> - - ) -}; - -export default Loading; -- cgit v1.2.3