mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-13 18:30:54 +01:00
21 lines
442 B
TypeScript
21 lines
442 B
TypeScript
import "../styles/globals.css";
|
|
import Head from "next/head";
|
|
import { AppProps } from "next/app";
|
|
import { Provider } from "jotai";
|
|
import "react-tooltip/dist/react-tooltip.css";
|
|
|
|
const MyApp = ({ Component, pageProps }: AppProps) => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Upscayl</title>
|
|
</Head>
|
|
<Provider>
|
|
<Component {...pageProps} data-theme="dark" />
|
|
</Provider>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default MyApp;
|