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

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