aboutsummaryrefslogtreecommitdiff
path: root/examples/react-file-system-router/pages/one.tsx
blob: 68c9fb4b937f2c854900b09c74b8c31845ba6d10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// reachable from http://localhost:3000/one

export default () => (
  <html>
    <head>
      <title>one</title>
    </head>
    <body>
      <p>one</p>
    </body>
  </html>
)