lume/packages/utils/src/state.ts

12 lines
212 B
TypeScript
Raw Normal View History

2024-01-04 01:52:45 +00:00
import { atom } from "jotai";
export const editorAtom = atom(false);
export const editorValueAtom = atom([
{
type: "paragraph",
children: [{ text: "" }],
},
]);
2024-01-08 13:18:07 +00:00
export const onboardingAtom = atom(false);