diff options
author | eug-vs <eug-vs@keemail.me> | 2020-07-03 19:02:06 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-07-03 19:02:06 +0300 |
commit | 2247e281f7f1c8c59ff758053dcb7b2c4f28d4a9 (patch) | |
tree | d5460c2a27b0029ecb1cead8c661548d6ed6070b /src/pages/HomePage/HomePage.tsx | |
parent | cb521315c2291eda6b273b5f8a2e014c24ea9758 (diff) | |
download | which-ui-2247e281f7f1c8c59ff758053dcb7b2c4f28d4a9.tar.gz |
feat: create a bunch of empty pages
Diffstat (limited to 'src/pages/HomePage/HomePage.tsx')
-rw-r--r-- | src/pages/HomePage/HomePage.tsx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/pages/HomePage/HomePage.tsx b/src/pages/HomePage/HomePage.tsx new file mode 100644 index 0000000..6930cc8 --- /dev/null +++ b/src/pages/HomePage/HomePage.tsx @@ -0,0 +1,20 @@ +import React, { useState } from 'react'; +import { Typography } from '@material-ui/core/'; +import { makeStyles } from '@material-ui/core/styles'; + +const useStyles = makeStyles({ +}); + +const HomePage: React.FC = () => { + const classes = useStyles(); + + return ( + <> + <Typography variant="h3"> Which one to choose? </Typography> + + </> + ); +}; + +export default HomePage; + |