ohmyform-ui/pages/admin/index.tsx
2020-05-29 16:27:45 +02:00

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'])