openpanel/packages/live-previews/pages/_app.tsx
Stefan Pejcic 8595a9f4e5 back
2024-05-08 19:58:53 +02:00

9 lines
205 B
TypeScript

import type { AppProps } from "next/app";
import "@/src/styles/global.css";
function App({ Component, pageProps }: AppProps): JSX.Element {
return <Component {...pageProps} />;
}
export default App;