mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-19 02:45:54 +01:00
5 lines
165 B
TypeScript
5 lines
165 B
TypeScript
import { atomWithStorage } from "jotai/utils";
|
|
|
|
export const newsSeenAtom = atomWithStorage("newsSeen", false);
|
|
export const newsAtom = atomWithStorage("news", []);
|