Files
svg-sprites/integration/apps/next-pages-turbopack/pages/_app.tsx
T

8 lines
170 B
TypeScript
Raw Normal View History

import type { AppProps } from 'next/app'
import './style.css'
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}