1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-24 15:12:16 +01:00

21 lines
442 B
TypeScript
Raw Normal View History

2022-11-12 02:09:28 +05:30
import "../styles/globals.css";
import Head from "next/head";
import { AppProps } from "next/app";
2023-04-08 12:23:32 +05:30
import { Provider } from "jotai";
import "react-tooltip/dist/react-tooltip.css";
2022-11-12 02:09:28 +05:30
const MyApp = ({ Component, pageProps }: AppProps) => {
return (
2022-12-08 08:55:26 +05:30
<>
2022-11-12 02:09:28 +05:30
<Head>
<title>Upscayl</title>
</Head>
2023-04-08 12:23:32 +05:30
<Provider>
<Component {...pageProps} data-theme="dark" />
</Provider>
2022-12-08 08:55:26 +05:30
</>
2022-11-12 02:09:28 +05:30
);
};
export default MyApp;