working idb example

This commit is contained in:
2025-08-14 23:09:34 -04:00
parent ad600a896c
commit b1dad2f6ba
3 changed files with 99 additions and 21 deletions

7
src/lib/types.ts Normal file
View File

@@ -0,0 +1,7 @@
export type CalendarEvent = {
id: string;
title: string;
start: string; // ISO date string (YYYY-MM-DD)
end?: string;
description?: string;
};