1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00
budibase/examples/nextjs-api-sales/pages/_app.tsx

9 lines
188 B
TypeScript
Raw Normal View History

import "../styles/global.sass"
import type { AppProps } from "next/app"
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp