aboutsummaryrefslogtreecommitdiff
path: root/demos/hello-next/pages/second.tsx
blob: ae5fd5ec81783f5be02ef4d8e55adb5565f3770f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Link from "next/link";

export default function Second({}) {
  return (
    <div style={{ padding: 16 }}>
      <h1>Second</h1>

      <ul>
        <li>
          <a href="/">Root page</a>
        </li>
        <li>
          <a href="/foo/bar/third">Third page</a>
        </li>
      </ul>
    </div>
  );
}