Transport-platform/notFound.jsx
2020-04-28 14:17:50 +00:00

7 lines
131 B
JavaScript

import React, { Component } from 'react';
const NotFound = () => {
return ( <h1>404</h1> );
}
export default NotFound;