feat: Recoil vollständig entfernt, Projekt nutzt nur noch Redux

- RecoilRoot aus _app.js entfernt
- recoil aus package.json & package-lock.json gelöscht
- README.md aktualisiert: Redux statt Recoil
- DataSheet.md & Wiki.md angepasst
- Projekt ist jetzt vollständig Recoil-frei
This commit is contained in:
ISA
2025-05-19 13:10:11 +02:00
parent e31eb7f02c
commit 13e176fda8
9 changed files with 75 additions and 234 deletions

View File

@@ -2,7 +2,7 @@
import { createSlice } from "@reduxjs/toolkit";
const initialState = {
currentPoi: null, // Standardwert wie im Recoil-Atom
currentPoi: null,
};
const currentPoiSlice = createSlice({