如何使用 material ui 在不同的组件上导航
How to navigate on different componet using material ui
如何使用 material UI
在不同的组件上导航
这是我的抽屉列表的代码
<List>
{['POS', 'Stock', 'Send email', 'Drafts'].map((text, index) => (
<ListItem button key={text}>
<ListItemIcon>
{index % 2 === 0 ? <InboxIcon /> : <MailIcon />}
</ListItemIcon>
<ListItemText primary={text} />
</ListItem>
))}
</List>
我想在股票页面上导航
App.js
<Provider store={store}>
<BrowserRouter>
< Routes>
<Route exact path='/' element={<Login/>} />
<Route exact path='/dashboard' element={<Dashboard/>} />
<Route exact path='/product' element={<Product/>}/>
</Routes>
</BrowserRouter>
</Provider>
我希望如果我单击此 listItem 元素以便打开该组件
这是我的 GUI
如何使用 material UI
在不同的组件上导航这是我的抽屉列表的代码
<List>
{['POS', 'Stock', 'Send email', 'Drafts'].map((text, index) => (
<ListItem button key={text}>
<ListItemIcon>
{index % 2 === 0 ? <InboxIcon /> : <MailIcon />}
</ListItemIcon>
<ListItemText primary={text} />
</ListItem>
))}
</List>
我想在股票页面上导航
App.js
<Provider store={store}>
<BrowserRouter>
< Routes>
<Route exact path='/' element={<Login/>} />
<Route exact path='/dashboard' element={<Dashboard/>} />
<Route exact path='/product' element={<Product/>}/>
</Routes>
</BrowserRouter>
</Provider>
我希望如果我单击此 listItem 元素以便打开该组件 这是我的 GUI