import { atom } from "jotai"; // Atoms to store the start and end dates for loans export const startDate = atom(null); export const endDate = atom(null); export const getBorrowableItemsAtom = atom(false);