mirror of
https://github.com/CompeyDev/seal.devcomp.xyz.git
synced 2025-01-07 11:29:12 +00:00
7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
|
import '@/styles/globals.css'
|
||
|
import type { AppProps } from 'next/app'
|
||
|
|
||
|
export default function App({ Component, pageProps }: AppProps) {
|
||
|
return <Component {...pageProps} />
|
||
|
}
|