feat: added purchase stock component

This commit is contained in:
bracesproul
2025-03-06 11:10:15 -08:00
parent 06b865c1c2
commit f7c750eceb
6 changed files with 221 additions and 46 deletions

View File

@@ -35,3 +35,12 @@ export type Price = {
volume: number;
time: string;
};
export type Snapshot = {
price: number;
ticker: string;
day_change: number;
day_change_percent: number;
market_cap: number;
time: string;
};