Makes session row and form components

This commit is contained in:
2025-05-31 16:58:13 -07:00
parent 5eba132bda
commit 8b837d622c
5 changed files with 60 additions and 35 deletions

View File

@@ -16,6 +16,9 @@ export type Document = RecordModel & {
id: DocumentId;
campaign: Campaign;
data: {};
// These two are not in Pocketbase's types, but they seem to always be present
created: string;
updated: string;
};
export type DocumentData<K extends string, V> = {