Files
lume/src/stores/note.tsx
2023-03-23 10:33:28 +07:00

7 lines
211 B
TypeScript

import { atom } from 'jotai';
// usecase: notify user that connector has receive newer note
export const hasNewerNoteAtom = atom(false);
// usecase: query notes from database
export const notesAtom = atom([]);