mirror of
https://github.com/IT4Change/ohmyform-ui.git
synced 2026-02-05 17:35:41 +00:00
11 lines
193 B
TypeScript
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
|