ohmyform-ui/pages/index.tsx
Michael Schramm ac03ca3250 init
2020-05-22 21:18:48 +02:00

19 lines
372 B
TypeScript

import {Alert} from 'antd'
import {withAuth} from 'components/with.auth'
import {NextPage} from 'next'
import React from 'react'
import Structure from '../components/structure'
const Index: NextPage = () => {
return (
<Structure
selected={'home'}
title={'Home'}
>
<Alert message={"Hi"}/>
</Structure>
)
}
export default withAuth(Index)