mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
15 lines
227 B
JavaScript
Executable File
15 lines
227 B
JavaScript
Executable File
import React from 'react'
|
|
import styles from './404.less'
|
|
|
|
const Error404 = () => (
|
|
<div className={styles.error}>
|
|
|
|
<h1>OBA BLYAT</h1>
|
|
<p>
|
|
<strong>ERROR 404</strong>
|
|
</p>
|
|
</div>
|
|
)
|
|
|
|
export default Error404
|