mentorenwahl/docker/frontend/pages/_app.tsx
Dominic Grimm 0e742965cc
All checks were successful
continuous-integration/drone/push Build is passing
Added frontend
2022-01-29 16:40:39 +01:00

10 lines
193 B
TypeScript

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