feat: Implement stock price component and api
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user