mirror of
https://github.com/mgerb/react-starter
synced 2026-01-10 09:02:49 +00:00
added wrapper and navbar
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
import React from 'react';
|
||||
|
||||
export default class New extends React.Component {
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div>
|
||||
Test new page
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,11 @@
|
||||
import React from 'react';
|
||||
import './NotFound.scss';
|
||||
|
||||
export default class Default extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<div className="Default">
|
||||
404
|
||||
<div className="NotFound">
|
||||
404 Not Found
|
||||
</div>
|
||||
);
|
||||
}
|
||||
8
app/pages/NotFound/NotFound.scss
Normal file
8
app/pages/NotFound/NotFound.scss
Normal file
@@ -0,0 +1,8 @@
|
||||
.NotFound {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
font-size: 20px;
|
||||
}
|
||||
Reference in New Issue
Block a user