1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-03 13:13:32 +01:00
upscayl/renderer/atoms/newsAtom.ts

5 lines
165 B
TypeScript
Raw Normal View History

2023-11-23 14:23:09 +05:30
import { atomWithStorage } from "jotai/utils";
2023-11-23 14:55:55 +05:30
export const newsSeenAtom = atomWithStorage("newsSeen", false);
export const newsAtom = atomWithStorage("news", []);