8 lines
249 B
JavaScript
8 lines
249 B
JavaScript
// /redux/slides/selectedAreaSlice.js
|
|
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)
|
|
});
|