mirror of
https://github.com/zhigang1992/react.git
synced 2026-05-25 11:56:05 +08:00
15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
import { Page, Text } from '@geist-ui/react'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Page dotBackdrop size="mini">
|
|
<Page.Header>
|
|
<Text h2>React Application with Geist UI</Text>
|
|
</Page.Header>
|
|
<Text>
|
|
Hello, I am using <Text b>Geist UI</Text> !
|
|
</Text>
|
|
</Page>
|
|
)
|
|
}
|