Files
web2.0-frontend/src/components/NotFoundPage/NotFoundPage.tsx
T
2018-06-21 09:44:33 +03:00

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;