Textinhalt der Dropdown-Option mit der Marker-Eigenschaft überein und Reinzoomen, funktioniert noch nicht bei alle Dropdown-Elemente

This commit is contained in:
ISA
2024-04-26 14:49:30 +02:00
parent 2563cf4718
commit d4ffe3aa0e
7 changed files with 45 additions and 45 deletions

View File

@@ -0,0 +1,7 @@
// In deinem Recoil store
import { atom } from "recoil";
export const selectedAreaState = atom({
key: "selectedAreaState", // unique ID (with respect to other atoms/selectors)
default: null, // default value (aka initial value)
});