1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-19 02:45:54 +01:00
upscayl/renderer/atoms/newsAtom.ts

5 lines
165 B
TypeScript
Raw Normal View History

2023-11-23 09:53:09 +01:00
import { atomWithStorage } from "jotai/utils";
2023-11-23 10:25:55 +01:00
export const newsSeenAtom = atomWithStorage("newsSeen", false);
export const newsAtom = atomWithStorage("news", []);