import { fetcher } from "@/client/base" import { IDefaultLayoutPage } from "@/components/layout/default-layout" import SeoHead from "@/components/layout/seo-head" import "@/styles/globals.css" import { ConfigProvider } from "antd" import koKR from "antd/locale/ko_KR" import { NextComponentType } from "next" import type { AppProps } from "next/app" import Head from "next/head" import { SWRConfig } from "swr" export default function App({ Component, pageProps: { session, ...pageProps } }: AppProps) { const getLayout = (Component as IDefaultLayoutPage).getLayout || ((Page: NextComponentType, props: Record) => ) return ( <>
{getLayout(Component, pageProps)}
) }