7 lines
211 B
TypeScript
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([]);
|