1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-pretty-url-routing/pages/index.js

14 lines
255 B
JavaScript
Raw Normal View History

import React from 'react'
export default function IndexPage () {
return (
<div>
<h1>Homepage</h1>
<form method='GET' action='/greeting'>
Name: <input name='name' />
<input type='submit' />
</form>
</div>
)
}