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> );
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> );