前端项目实战拾陆-react-admin路由样式替换antd

import { Link } from 'react-router-dom';

const Dashboard = () => (
    <div>
        <h1>Dashboard</h1>
        <Link to="/posts">Posts</Link>
        <Link to="/posts/create">Create a new post</Link>
        <Link to="/posts/123/show">My favorite post</Link>
    </div>
);

posted @ 2023-06-29 09:50  前端导师歌谣  阅读(14)  评论(0)    收藏  举报  来源