mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-25 16:25:16 +00:00
add strategies route
This commit is contained in:
parent
694c226bc0
commit
46375eb477
|
@ -89,12 +89,15 @@ export default function SideBar() {
|
|||
<ListItemText primary="Trades" />
|
||||
</ListItem>
|
||||
</Link>
|
||||
<ListItem button>
|
||||
<ListItemIcon>
|
||||
<TrendingUpIcon />
|
||||
</ListItemIcon>
|
||||
<ListItemText primary="Strategies" />
|
||||
</ListItem>
|
||||
<Link href={'/strategies'}>
|
||||
<ListItem button>
|
||||
<ListItemIcon>
|
||||
<TrendingUpIcon />
|
||||
</ListItemIcon>
|
||||
<ListItemText primary="Strategies" />
|
||||
</ListItem>
|
||||
</Link>
|
||||
|
||||
</List>
|
||||
</Drawer>
|
||||
);
|
||||
|
|
12
frontend/pages/strategies.js
Normal file
12
frontend/pages/strategies.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
import DashboardLayout from '../layouts/DashboardLayout';
|
||||
|
||||
|
||||
export default function Strategies(){
|
||||
|
||||
return (
|
||||
<DashboardLayout>
|
||||
Hello World
|
||||
</DashboardLayout>
|
||||
|
||||
);
|
||||
}
|
Loading…
Reference in New Issue
Block a user