12 lines
173 B
JavaScript
12 lines
173 B
JavaScript
import React, { Component } from 'react';
|
|
|
|
class NotFound extends Component {
|
|
render() {
|
|
return (
|
|
<h1>404 Not Found</h1>
|
|
);
|
|
};
|
|
}
|
|
|
|
export default NotFound;
|