1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-23 23:21:05 +01:00
upscayl/renderer/pages/_app.tsx

23 lines
516 B
TypeScript
Raw Normal View History

2022-11-11 21:39:28 +01:00
import "../styles/globals.css";
import Head from "next/head";
import { AppProps } from "next/app";
2023-04-08 08:53:32 +02:00
import { Provider } from "jotai";
import "react-tooltip/dist/react-tooltip.css";
2024-04-21 16:04:59 +02:00
import { Toaster } from "@/components/ui/toaster";
2022-11-11 21:39:28 +01:00
const MyApp = ({ Component, pageProps }: AppProps) => {
return (
2022-12-08 04:25:26 +01:00
<>
2022-11-11 21:39:28 +01:00
<Head>
<title>Upscayl</title>
</Head>
2023-04-08 08:53:32 +02:00
<Provider>
2023-08-30 09:59:39 +02:00
<Component {...pageProps} data-theme="upscayl" />
2024-04-21 16:04:59 +02:00
<Toaster />
2023-04-08 08:53:32 +02:00
</Provider>
2022-12-08 04:25:26 +01:00
</>
2022-11-11 21:39:28 +01:00
);
};
export default MyApp;