1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-19 02:45:54 +01:00
upscayl/renderer/atoms/newsAtom.ts
2023-11-23 14:55:55 +05:30

5 lines
165 B
TypeScript

import { atomWithStorage } from "jotai/utils";
export const newsSeenAtom = atomWithStorage("newsSeen", false);
export const newsAtom = atomWithStorage("news", []);