mirror of
https://github.com/vercel/commerce.git
synced 2025-03-15 15:02:32 +00:00
10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
|
import "@assets/global.css";
|
||
|
|
||
|
export default function MyApp({ Component, pageProps }) {
|
||
|
return (
|
||
|
<>
|
||
|
<Component {...pageProps} />
|
||
|
</>
|
||
|
);
|
||
|
}
|