mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-14 18:57:41 +01:00
9 lines
211 B
TypeScript
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);
|