1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-14 18:57:41 +01:00
upscayl/renderer/atoms/userSettingsAtom.ts

9 lines
211 B
TypeScript
Raw Normal View History

2023-04-09 07:16:15 +02:00
import { atomWithStorage } from "jotai/utils";
export const customModelsPathAtom = atomWithStorage<string | null>(
"customModelsPath",
null
);
2023-04-12 15:31:07 +02:00
export const scaleAtom = atomWithStorage<number>("scale", 4);