mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
db7c286740
* [example] with pretty url routing * use single quotes even in React components * improve Link import
14 lines
255 B
JavaScript
14 lines
255 B
JavaScript
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>
|
|
)
|
|
}
|