1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-30 18:24:27 +01:00
upscayl/renderer/atoms/userSettingsAtom.ts
2023-04-09 10:46:15 +05:30

7 lines
148 B
TypeScript

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