7c09ac46da
The purpose of this branch is to bring this project in line with the JWT protcol that the microservice is using. For the time being, it's easier to get a stripped-down and stable build and replace the lost parts, one- by-one.
12 lines
188 B
React
12 lines
188 B
React
import React from 'react';
|
|
|
|
const NotFound = props => {
|
|
return (
|
|
<div className='page'>
|
|
<h1 className='middle centered'>Page Not Found</h1>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default NotFound;
|