mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-02-11 03:26:49 +00:00
18 lines
296 B
TypeScript
18 lines
296 B
TypeScript
import { Circle } from '../components/circle'
|
|
import { Shape } from '@status-im/components'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<div>
|
|
<h1>Next.js</h1>
|
|
<Circle />
|
|
</div>
|
|
<div>
|
|
<h1>UI</h1>
|
|
<Shape />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|