mirror of
https://github.com/linsa-io/linsa.git
synced 2026-03-18 15:23:59 +01:00
8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
import { atom } from "jotai"
|
|
|
|
export const isCollapseAtom = atom(false)
|
|
export const toggleCollapseAtom = atom(
|
|
(get) => get(isCollapseAtom),
|
|
(get, set) => set(isCollapseAtom, !get(isCollapseAtom)),
|
|
)
|