svrjs-nextjs-website/pages/_app.tsx

12 lines
196 B
TypeScript
Raw Normal View History

2024-06-24 19:35:35 +02:00
import "@/app/globals.css";
function MyApp({ Component, pageProps }) {
return (
<main style={{ fontFamily: "Poppins" }}>
2024-06-24 23:27:45 +02:00
<Component {...pageProps} />
2024-06-24 19:35:35 +02:00
</main>
);
}
export default MyApp;