Initial theme designed
This commit is contained in:
12
pages/_app.tsx
Normal file
12
pages/_app.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { AppProps } from "next/app";
|
||||
import { FC } from "react";
|
||||
import { ChakraProvider } from "@chakra-ui/react";
|
||||
import theme from "../theme";
|
||||
|
||||
const App: FC<AppProps> = ({ Component, pageProps }) => (
|
||||
<ChakraProvider theme={theme}>
|
||||
<Component {...pageProps} />
|
||||
</ChakraProvider>
|
||||
);
|
||||
|
||||
export default App;
|
||||
Reference in New Issue
Block a user