๐Ÿ“ฆ paulshen / test-vite-stream

๐Ÿ“„ B.tsx ยท 12 lines
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>
  );
}