mirror of
https://github.com/IgnatZakalinsky/home-works.git
synced 2026-01-26 20:42:05 +00:00
14 lines
258 B
TypeScript
14 lines
258 B
TypeScript
import React from 'react'
|
|
|
|
const Error404 = () => {
|
|
return (
|
|
<div id={'page-404'}>
|
|
<div>404</div>
|
|
<div>Page not found!</div>
|
|
<div>—ฅ/ᐠ.̫ .ᐟ\ฅ—</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Error404
|