8 lines
237 B
JavaScript
8 lines
237 B
JavaScript
// 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)
|
|
});
|