mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
5260736e33
* example with-redux-observable * fix styling with js standard-style
14 lines
212 B
JavaScript
14 lines
212 B
JavaScript
import React from 'react'
|
|
import Link from 'next/link'
|
|
|
|
const OtherPage = () => (
|
|
<div>
|
|
<h1>Other Page</h1>
|
|
<Link href='/'>
|
|
<a>Get back to "/"</a>
|
|
</Link>
|
|
</div>
|
|
)
|
|
|
|
export default OtherPage
|