mirror of
https://github.com/wassname/talk.git
synced 2026-07-08 10:39:51 +08:00
17 lines
402 B
JavaScript
17 lines
402 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>
|
|
);
|