mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
dccbc1ea35
* Update examples/with-antd-mobile - Reduced noise - Simplify setup * Create more more complex example
12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
import Layout from '../components/Layout'
|
|
import { Button } from 'antd-mobile'
|
|
import Link from 'next/link'
|
|
|
|
export default () => (
|
|
<Layout title='Index'>
|
|
<Link href='/about'>
|
|
<Button>Go to About</Button>
|
|
</Link>
|
|
</Layout>
|
|
)
|