mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
e11d08ae45
* update with-react-i18next supporting new _app.js * update readme to not encourage cloning of repo
15 lines
255 B
JavaScript
15 lines
255 B
JavaScript
// a page not using i18next - no hoc - not t function
|
|
import React from 'react'
|
|
import Link from 'next/link'
|
|
|
|
export default () => {
|
|
return (
|
|
<div>
|
|
<h1>Hello Page 3</h1>
|
|
<Link href='/'>
|
|
<a>back</a>
|
|
</Link>
|
|
</div>
|
|
)
|
|
}
|