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