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

11 lines
199 B
TypeScript

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