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);
|