1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 11:24:35 +00:00

chore: add base container for home page

This commit is contained in:
2021-10-18 11:36:28 +00:00
parent 24d3290366
commit 7396f4c952

View File

@@ -0,0 +1,15 @@
import React from 'react'
import CssBaseline from '@mui/material/CssBaseline'
import Box from '@mui/material/Box'
const Home = () => {
return (
<Box sx={{ display: 'flex' }} className="main">
<CssBaseline />
<h2>this is home component</h2>
</Box>
)
}
export default Home