You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
476 B
TypeScript

import { Container, CssBaseline, ThemeProvider } from '@mui/material'
import { Shop } from './pages/shop'
import { blue } from '@mui/material/colors'
import { theme } from './theme'
export const App = () => {
return (
<>
<CssBaseline />
<ThemeProvider theme={theme}>
<Container maxWidth="md" sx={{ bgcolor: blue }}>
<Shop />
</Container>
</ThemeProvider>
</>
)
}