status-web/apps/next/pages/index.tsx

18 lines
296 B
TypeScript
Raw Normal View History

2023-01-10 11:25:26 +00:00
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>
)
}