mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 01:01:56 +00:00
backtest: add more react fix
This commit is contained in:
parent
e92e0f04f3
commit
ee70dc3f7c
|
@ -111,11 +111,9 @@ function StatsGridIcons({data}: StatsGridIconsProps) {
|
||||||
});
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div py="xl">
|
<SimpleGrid cols={5} breakpoints={[{maxWidth: 'sm', cols: 1, spacing: 'xl'}]} py="xl">
|
||||||
<SimpleGrid cols={5} breakpoints={[{maxWidth: 'sm', cols: 1, spacing: 'xl'}]}>
|
|
||||||
{stats}
|
{stats}
|
||||||
</SimpleGrid>
|
</SimpleGrid>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -134,6 +134,7 @@ interface Order {
|
||||||
status: string;
|
status: string;
|
||||||
update_time: Date;
|
update_time: Date;
|
||||||
creation_time: Date;
|
creation_time: Date;
|
||||||
|
time?: Date;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Marker {
|
interface Marker {
|
||||||
|
|
|
@ -22,7 +22,7 @@ const Home: NextPage = () => {
|
||||||
</Head>
|
</Head>
|
||||||
<main className={styles.main}>
|
<main className={styles.main}>
|
||||||
<AppShell
|
<AppShell
|
||||||
padding="xm"
|
padding="sm"
|
||||||
navbar={<Navbar width={{base: 250}} height={500} p="xs">
|
navbar={<Navbar width={{base: 250}} height={500} p="xs">
|
||||||
|
|
||||||
<ReportNavigator onSelect={(reportEntry) => {
|
<ReportNavigator onSelect={(reportEntry) => {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user