Backup before moving to local state instead of hooks.

This commit is contained in:
Patrick Fic
2019-12-06 21:10:05 -08:00
parent 1b759924a4
commit 8a72294c91
9 changed files with 67 additions and 46 deletions

View File

@@ -0,0 +1,15 @@
import React from "react";
import { Typography } from "antd";
import HeaderContainer from "../../components/header/header.container";
export default function Unauthorized() {
return (
<div>
<HeaderContainer landingHeader />
<Typography.Title>Unauthorized</Typography.Title>
<Typography.Paragraph>
You do not have permission to view the requested page.
</Typography.Paragraph>
</div>
);
}