mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-11 21:29:09 -05:00
18 lines
383 B
JavaScript
18 lines
383 B
JavaScript
import React from "react"
|
|
import { Header } from "semantic-ui-react"
|
|
|
|
const NotFound = () => {
|
|
return (
|
|
<div style={{ minHeight: "500px" }}>
|
|
<Header as="h2">
|
|
404 - Not Found
|
|
<Header.Subheader>
|
|
The page you tried to access couldn't be found. Sorry about that!
|
|
</Header.Subheader>
|
|
</Header>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default NotFound
|