File tree Expand file tree Collapse file tree 4 files changed +25
-48
lines changed
front/src/pages/pageNotFound Expand file tree Collapse file tree 4 files changed +25
-48
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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 ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+
2+ import { compose } from redux ';
3+ import PageNotFound from '. / PageNotFound ';
4+
5+ export default compose ( ) ( PageNotFound ) ;
You can’t perform that action at this time.
0 commit comments