Forbidden component

This commit is contained in:
okbel
2018-03-22 15:29:56 -03:00
parent b65e7a0ad9
commit 36988d7e20
5 changed files with 29 additions and 13 deletions
@@ -0,0 +1,8 @@
.container {
max-width: 1280px;
margin: 0 auto;
}
.copy {
padding: 20px 0;
}
@@ -0,0 +1,13 @@
import React from 'react';
import styles from './Forbidden.css';
const Forbidden = () => (
<div className={styles.container}>
<p className={styles.copy}>
This page is for team use only. Please contact an administrator if you
want to join this team.
</p>
</div>
);
export default Forbidden;