mentorenwahl/docker/frontend/pages/_app.tsx

10 lines
193 B
TypeScript
Raw Normal View History

2022-01-29 15:40:39 +00:00
import type { AppProps } from "next/app";
import "../styles/globals.css";
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
export default MyApp;