Files
Skydust e583858edb
Some checks failed
A gitea test / Random test (pull_request) Has been cancelled
Cleaned up some code and added a somewhat responsive header burger
2023-09-19 15:13:22 +02:00

10 lines
244 B
TypeScript

import "../styles/_styles.scss";
// import TagManager from "react-gtm-module";
// TagManager.initialize({ gtmId: "G-GGBB2SV4YC" });
const App = ({ Component, pageProps }) => {
return <Component { ...pageProps } />;
};
export default App;