Spaces:
Sleeping
Sleeping
import { atom } from 'jotai'; | |
export type DatasetImageEntity = { | |
url: string; | |
selected: boolean; | |
name: string; | |
}; | |
// list of image urls or base64 strings | |
export const datasetAtom = atom<DatasetImageEntity[]>([]); | |
// export const selectedImagesAtom = atom<number[]>([]); | |