1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-15 18:32:33 +01:00
upscayl/renderer/atoms/news-atom.ts
2024-09-25 07:48:58 +05:30

6 lines
247 B
TypeScript

import { GrayMatterFile } from "gray-matter";
import { atomWithStorage } from "jotai/utils";
export const showNewsModalAtom = atomWithStorage("showNewsModal", false);
export const newsAtom = atomWithStorage<GrayMatterFile<string>>("news", null);