aboutsummaryrefslogtreecommitdiff
path: root/examples/react-file-system-router/pages/index.tsx
blob: f1fe2a2e1764fb5445f79f0f6f34b04de0856592 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// reachable from http://localhost:3000/

export default () => (
  <html>
    <head>
      <title>index</title>
    </head>
    <body>
      <h1>
        <a href="/one">one</a>
      </h1>
      <h1>
        <a href="/two">two</a>
      </h1>
    </body>
  </html>
);