React路由结合Material UI的ListItemButton组件完成导航示例
1、创建菜单列表NavigationList.jsx
import React from 'react';
import {
ListItemButton, ListItemText, List } from '@mui/material';
import {
NavLink as RouterLink } from 'react-router-dom';
const items = [
{
id: 1, path: '/home', label: 'Home' },
{
id: 2, path: '/about', label: 'About' },
];
const NavigationList = () => {
return (
<div>
<List>
{
items

最低0.47元/天 解锁文章
1471

被折叠的 条评论
为什么被折叠?



