mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 22:45:47 +00:00
* feat(cli): add zero-config support for Next.js * chore: add changeset * feat(cli): add preflight
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} />
|
|
}
|