mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-30 18:24:27 +01:00
7 lines
148 B
TypeScript
7 lines
148 B
TypeScript
import { atomWithStorage } from "jotai/utils";
|
|
|
|
export const customModelsPathAtom = atomWithStorage<string | null>(
|
|
"customModelsPath",
|
|
null
|
|
);
|