update,
This commit is contained in:
21
vinniesniper-54816/task1/project/frontend/pages/_app.js
Normal file
21
vinniesniper-54816/task1/project/frontend/pages/_app.js
Normal file
@@ -0,0 +1,21 @@
|
||||
import Head from "next/head";
|
||||
import theme from "@/config/theme";
|
||||
import ThemeProvider from "@/config/StyledMaterialThemeProvider";
|
||||
|
||||
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