12 lines
183 B
React
12 lines
183 B
React
import React from 'react';
|
|
|
|
const NotFound = props => {
|
|
return (
|
|
<div className='page'>
|
|
<h1 className='middle centered'>Not Found</h1>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default NotFound;
|