sparkast/lib/state/suggestion.ts
alikia2x 844333e623 ref: sparkhome v5, use vite instead of next.js
Progress: component search, time and background could run.
2024-06-24 04:40:31 +08:00

7 lines
153 B
TypeScript

import { suggestionItem } from "global";
import { atom } from "jotai";
const suggestionAtom = atom([] as suggestionItem[]);
export { suggestionAtom };