4
0
forked from crowetic/commerce
commerce/pages/_app.tsx

7 lines
178 B
TypeScript
Raw Normal View History

2020-10-01 21:18:01 -05:00
import type { AppProps } from 'next/app'
2020-10-01 20:40:40 -05:00
import '@assets/global.css'
2020-09-23 15:19:36 -03:00
2020-10-01 21:18:01 -05:00
export default function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
2020-09-23 15:19:36 -03:00
}