finished putting in the table and the dropdowns and the loading of stuff when it is needed
This commit is contained in:
parent
fffa8edc46
commit
49bd146de6
2 changed files with 331 additions and 19 deletions
|
|
@ -1000,8 +1000,9 @@ export default function Bin(props: Props) {
|
|||
<Tab label="Inventory" style={{ fontWeight: mobileTab === 1 ? 650 : 500 }} />
|
||||
<Tab label="Sensors" style={{ fontWeight: mobileTab === 2 ? 650 : 500 }} />
|
||||
<Tab label="Analysis" style={{ fontWeight: mobileTab === 3 ? 650 : 500 }} />
|
||||
<Tab label="Alerts" style={{ fontWeight: mobileTab === 3 ? 650 : 500 }} />
|
||||
<Tab label="Presets" style={{ fontWeight: mobileTab === 3 ? 650 : 500 }} />
|
||||
<Tab label="Alerts" style={{ fontWeight: mobileTab === 4 ? 650 : 500 }} />
|
||||
<Tab label="Presets" style={{ fontWeight: mobileTab === 5 ? 650 : 500 }} />
|
||||
<Tab label="Transactions" style={{ fontWeight: mobileTab === 6 ? 650 : 500 }} />
|
||||
</Tabs>
|
||||
<TabPanelMine value={mobileTab} index={0}>
|
||||
{overview()}
|
||||
|
|
@ -1088,6 +1089,9 @@ export default function Bin(props: Props) {
|
|||
}}
|
||||
/>
|
||||
</TabPanelMine>
|
||||
<TabPanelMine value={mobileTab} index={6}>
|
||||
<BinTransactions bin={bin}/>
|
||||
</TabPanelMine>
|
||||
</Card>
|
||||
);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue