added the marketplace page to be able to add the jd and cnh features

This commit is contained in:
csawatzky 2025-04-11 12:17:20 -06:00
parent 2816884771
commit 411ff5b14c
5 changed files with 336 additions and 0 deletions

View file

@ -366,6 +366,18 @@ export default function SideNavigator(props: Props) {
</ListItemButton>
</Tooltip>
}
<Tooltip title="Marketplace" placement="right">
<ListItemButton
id="tour-marketplace"
onClick={() => goTo("/marketplace")}
classes={getClasses("/marketplace")}
>
<ListItemIcon>
<Code />
</ListItemIcon>
{open && <ListItemText primary="Marketplace" />}
</ListItemButton>
</Tooltip>
</List>
)
}