added borrowable items fetching and date input functionality to HomePage

This commit is contained in:
2025-10-25 20:01:06 +02:00
parent ba34a97328
commit 4b00dd6554
3 changed files with 152 additions and 0 deletions

View File

@@ -3,3 +3,4 @@ import { atom } from "jotai";
export const testAtom = atom<number>(0);
export const setIsLoggedInAtom = atom<boolean>(false);
export const triggerLogoutAtom = atom<boolean>(false);
export const borrowAbleItemsAtom = atom<any[]>([]);