1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-12 01:52:49 +00:00

thread page in progress

This commit is contained in:
2018-01-07 22:58:10 -06:00
parent 98f682fdce
commit 5ffa2753ed
51 changed files with 356 additions and 18 deletions

View File

@@ -0,0 +1,6 @@
.not-found {
display: flex;
justify-content: center;
align-items: center;
min-height: 700px;
}

View File

@@ -0,0 +1,20 @@
import React from 'react';
import { RouteComponentProps } from 'react-router-dom';
import { ContentContainer } from '../../components';
import './not-found.scss';
interface Props extends RouteComponentProps<any> {}
interface State {}
export class NotFound extends React.Component<Props, State> {
render() {
return (
<ContentContainer className="not-found">
<h1>Oops! This page doesn't exist!</h1>
</ContentContainer>
);
}
}