UNPKG

cra-template-mui-light

Version:

This template contains mui, material-table, axios and axios-hooks packages with a pre-created context and 4 configs for development environment.

17 lines (14 loc) 406 B
import React from "react" import { Typography, CssBaseline } from "@mui/material" import { AppContextProvider as ContextProvider } from '../src/utils/AppContext' const App = () => { return ( <div> <ContextProvider> <Typography variant="h2">Happy Coding with Material UI</Typography> <CssBaseline /> </ContextProvider> </div> ) } export default App