mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2025-12-13 09:45:50 +00:00
17 lines
321 B
TypeScript
17 lines
321 B
TypeScript
import {NextPage} from 'next'
|
|
import React from 'react'
|
|
import Structure from '../../components/structure'
|
|
import {withAuth} from '../../components/with.auth'
|
|
|
|
const Index: NextPage = () => {
|
|
return (
|
|
<Structure
|
|
title={'Home'}
|
|
>
|
|
ok!
|
|
</Structure>
|
|
)
|
|
}
|
|
|
|
export default withAuth(Index, ['admin'])
|