mirror of
https://github.com/Xevion/icons.git
synced 2025-12-15 08:12:03 -06:00
13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
import {type AppType} from "next/dist/shared/lib/utils";
|
|
|
|
import "@styles/globals.scss";
|
|
|
|
const MyApp: AppType = ({Component, pageProps}) => {
|
|
|
|
return <div className="min-h-screen min-w-screen bg-[#F6F6F6] dark:bg-zinc-800">
|
|
<Component {...pageProps} />
|
|
</div>
|
|
};
|
|
|
|
export default MyApp;
|