1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-14 18:57:41 +01:00
upscayl/renderer/atoms/userSettingsAtom.ts
2023-04-12 19:01:07 +05:30

9 lines
211 B
TypeScript

import { atomWithStorage } from "jotai/utils";
export const customModelsPathAtom = atomWithStorage<string | null>(
"customModelsPath",
null
);
export const scaleAtom = atomWithStorage<number>("scale", 4);