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> );