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:
6
client/app/pages/not-found/not-found.scss
Normal file
6
client/app/pages/not-found/not-found.scss
Normal file
@@ -0,0 +1,6 @@
|
||||
.not-found {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 700px;
|
||||
}
|
||||
20
client/app/pages/not-found/not-found.tsx
Normal file
20
client/app/pages/not-found/not-found.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user