import { atom } from "jotai"; import { CustomerData } from "./types"; export const customerState = atom({ identifier: 'Tuntematon', location: 'Tuntematon', boxes: [{ id: 'Tuntematon', delivery_date: new Date(), pickup_date: new Date(), }], });