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