Merge branch 'v1.0.8.1' into fix/ohne-externe-babel

This commit is contained in:
ISA
2025-02-05 10:27:36 +01:00
88 changed files with 5425 additions and 459 deletions

View File

@@ -1,15 +1,19 @@
// Pfad: pages/_app.js
// /pages/_app.js
import React from "react";
import { RecoilRoot } from "recoil";
import { Provider } from "react-redux";
import store from "../redux/store";
import { store } from "../redux/store"; // ← Stelle sicher, dass der Import korrekt ist!
import "../styles/global.css";
//import "../public/css/geocoder.css";
function MyApp({ Component, pageProps }) {
return (
<Provider store={store}>
{" "}
{/* Redux Provider */}
<RecoilRoot>
{" "}
{/* Recoil Provider */}
<Component {...pageProps} />
</RecoilRoot>
</Provider>