mirror of
https://github.com/wassname/talk.git
synced 2026-08-06 13:41:02 +08:00
14 lines
417 B
JavaScript
14 lines
417 B
JavaScript
import React from 'react';
|
||
import {Layout} from 'react-mdl';
|
||
import styles from './NotFound.css';
|
||
|
||
export const PermissionRequired = () => (
|
||
<Layout fixedDrawer>
|
||
<div className={styles.layout} >
|
||
<h1>Permission Required</h1>
|
||
<p>We’re sorry, but you don’t have access to that page.</p>
|
||
<img src="https://coralproject.net/images/communicorn.jpg" alt="Communicorn"/>
|
||
</div>
|
||
</Layout>
|
||
);
|