aboutsummaryrefslogtreecommitdiff
path: root/examples/react-file-system-router/pages/index.tsx
blob: b2d9e735e9bf1c8e682156e473effe436222c198 (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>
)