feat: Hookup accommodations actions to graph

This commit is contained in:
bracesproul
2025-03-05 11:39:08 -08:00
parent 98c21f4e6e
commit 837fe86970
7 changed files with 112 additions and 61 deletions

View File

@@ -9,3 +9,12 @@ export const GenerativeUIAnnotation = Annotation.Root({
});
export type GenerativeUIState = typeof GenerativeUIAnnotation.State;
export type Accommodation = {
id: string;
name: string;
price: number;
rating: number;
city: string;
image: string;
};