ohmyform-ui/pages/form/index.tsx
2020-05-30 12:59:31 +02:00

11 lines
193 B
TypeScript

import {ErrorPage} from 'components/error.page'
import {NextPage} from 'next'
import React from 'react'
const Index: NextPage = () => {
return (
<ErrorPage />
)
}
export default Index