17 lines
345 B
TypeScript
17 lines
345 B
TypeScript
import * as React from "react";
|
|
import "./NotFoundPage.scss";
|
|
|
|
export interface NotFoundPageProps {}
|
|
|
|
class NotFoundPage extends React.Component<NotFoundPageProps, undefined> {
|
|
render() {
|
|
return (
|
|
<div className="not-found-page">
|
|
<strong>404</strong> | Ei vaan löydy
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default NotFoundPage;
|