feat: Implement stock price component and api

This commit is contained in:
bracesproul
2025-03-05 18:02:46 -08:00
parent 10da745533
commit 06b865c1c2
8 changed files with 1116 additions and 937 deletions

View File

@@ -25,3 +25,13 @@ export type Accommodation = {
city: string;
image: string;
};
export type Price = {
ticker: string;
open: number;
close: number;
high: number;
low: number;
volume: number;
time: string;
};