mirror of
https://github.com/upscayl/upscayl.git
synced 2025-02-15 18:32:33 +01:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
import { defaultModelsList } from "@common/models-list";
|
|
import { atom } from "jotai";
|
|
|
|
export type TModelsList = {
|
|
label: string;
|
|
value: string;
|
|
}[];
|
|
|
|
export const modelsListAtom = atom<TModelsList>(defaultModelsList);
|