Add routes tab to lightning node page (#295)

This commit is contained in:
Jonathan Zernik 2020-10-15 17:39:59 -07:00 committed by GitHub
parent aef185830b
commit e9cfcd00c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -462,6 +462,7 @@ export default function LightningNodePage() {
<Tab label="Node Info" {...a11yProps(0)} />
<Tab label="Channels" {...a11yProps(1)} />
<Tab label="Pending Channels" {...a11yProps(2)} />
<Tab label="Routes" {...a11yProps(3)} />
</Tabs>
</AppBar>
<TabPanel value={value} index={0}>
@ -473,6 +474,9 @@ export default function LightningNodePage() {
<TabPanel value={value} index={2}>
barrr
</TabPanel>
<TabPanel value={value} index={3}>
Show routes here
</TabPanel>
</>
)
}