1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 17:42:48 +00:00
Files
classic-wow-forums/client/app/pages/not-found/not-found.tsx

21 lines
461 B
TypeScript

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>
);
}
}