mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 09:45:50 +00:00
19 lines
372 B
TypeScript
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)
|