Skip to content

Commit 977f3c1

Browse files
committed
migration
1 parent 8fe065a commit 977f3c1

File tree

4 files changed

+25
-48
lines changed

4 files changed

+25
-48
lines changed

front/src/pages/pageNotFound/PageNotFound.js

Lines changed: 0 additions & 39 deletions
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import React from 'react';
2+
import { RouteComponentProps } from 'react-router';
3+
import Jumbotron from 'reactstrap/lib/Jumbotron';
4+
import FadeInEntrance from '../../components/fadeInEntrance';
5+
6+
type Props = {} & RouteComponentProps<any, any>;
7+
8+
function PageNotFound({}: Props) {
9+
return (
10+
<FadeInEntrance>
11+
<Jumbotron>
12+
<h1>Sorry this page does not exists...</h1>
13+
</Jumbotron>
14+
</FadeInEntrance>
15+
);
16+
}
17+
18+
PageNotFound.displayName = 'PageNotFound';
19+
20+
export default PageNotFound;

front/src/pages/pageNotFound/index.js

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
import {compose} from redux';
3+
import PageNotFound from './PageNotFound';
4+
5+
export default compose()(PageNotFound);

0 commit comments

Comments
 (0)