igor-starostenko/report_factory-web

View on GitHub
src/components/not_found.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React, { Fragment } from 'react';

export default function NotFound(props) {
  return (
    <Fragment>
      <h1 {...props}>Not Found</h1>
    </Fragment>
  );
}