mirror of
https://github.com/wassname/talk.git
synced 2026-07-22 13:00:29 +08:00
14 lines
316 B
JavaScript
14 lines
316 B
JavaScript
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;
|