16 lines
340 B
TypeScript
16 lines
340 B
TypeScript
import React from "react";
|
|
import { ThemeProvider } from "next-themes";
|
|
// import { AppProps } from 'next/app'
|
|
|
|
// import 'tailwindcss/tailwind.css'
|
|
import "../styles/main.sass";
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<ThemeProvider>
|
|
<Component {...pageProps} />
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|