mirror of
https://github.com/wassname/talk.git
synced 2026-07-28 11:27:05 +08:00
14 lines
378 B
JavaScript
14 lines
378 B
JavaScript
import React from 'react';
|
|
import {Layout} from 'react-mdl';
|
|
import styles from './NotFound.css';
|
|
|
|
export const NotFound = () => (
|
|
<Layout fixedDrawer>
|
|
<div className={styles.layout} >
|
|
<h1>Page Not Found</h1>
|
|
<p>The communicorn feels your pain.</p>
|
|
<img src="https://coralproject.net/images/communicorn.jpg" alt="Communicorn"/>
|
|
</div>
|
|
</Layout>
|
|
);
|