cal.pub0.org/apps/storybook/pages/_app.tsx

10 lines
193 B
TypeScript
Executable File

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