1 2 3 4 5 6 7 8 9 10 11 12import { Link } from "react-router-dom"; export function B({ user }) { return ( <div> <div>Page B</div> <div>{JSON.stringify(user)}</div> <Link to="/">Go to /</Link> </div> ); }
1 2 3 4 5 6 7 8 9 10 11 12
import { Link } from "react-router-dom"; export function B({ user }) { return ( <div> <div>Page B</div> <div>{JSON.stringify(user)}</div> <Link to="/">Go to /</Link> </div> ); }