Lapanti/ts-react-boilerplate

View on GitHub
src/components/PageNotFound.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import * as React from 'react';

const PageNotFound: React.StatelessComponent<undefined> = () =>
    <div className="page-not-found">404 - page not found</div>;

export default PageNotFound;