Transport-platform/notFound.jsx

7 lines
131 B
React
Raw Permalink Normal View History

2020-04-28 16:17:50 +02:00
import React, { Component } from 'react';
const NotFound = () => {
return ( <h1>404</h1> );
}
export default NotFound;