mirror of
https://github.com/zhigang1992/react.git
synced 2026-04-26 23:04:55 +08:00
13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
import { Page, Text, Button } from '@zeit-ui/react'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Page>
|
|
<Text h1>
|
|
Welcome to <a href="https://nextjs.org">Next.js!</a>
|
|
</Text>
|
|
<Button>hello</Button>
|
|
</Page>
|
|
)
|
|
}
|