update jamespong14205,
This commit is contained in:
18
task1/project/003_src/client/pages/_app.js
Normal file
18
task1/project/003_src/client/pages/_app.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import ThemeProvider from '@/config/StyledMaterialThemeProvider';
|
||||
import theme from '@/config/theme';
|
||||
import Head from 'next/head';
|
||||
|
||||
function MyApp({ Component, pageProps }) {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<meta name='viewport' content='minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no' />
|
||||
</Head>
|
||||
<ThemeProvider theme={theme}>
|
||||
<Component {...pageProps} />
|
||||
</ThemeProvider>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default MyApp;
|
Reference in New Issue
Block a user