mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
17 lines
327 B
JavaScript
17 lines
327 B
JavaScript
import React from 'react'
|
|
import { Icon } from 'antd'
|
|
import { Page } from 'components'
|
|
import styles from './404.less'
|
|
|
|
const Error = () => (
|
|
<Page inner>
|
|
<div className={styles.error}>
|
|
<Icon type="api" />
|
|
<h1>OBA BLYAT</h1>
|
|
<p><strong>ERROR 404</strong></p>
|
|
</div>
|
|
</Page>
|
|
)
|
|
|
|
export default Error
|