mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
|
import Layout from '../components/Layout'
|
||
|
import { Button } from 'antd-mobile'
|
||
|
import Link from 'next/link'
|
||
|
|
||
|
export default () => (
|
||
|
<Layout title='About'>
|
||
|
<Link href='/'>
|
||
|
<Button>Go to Index</Button>
|
||
|
</Link>
|
||
|
</Layout>
|
||
|
)
|