mirror of
https://github.com/wassname/talk.git
synced 2026-07-08 08:48:36 +08:00
14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
import React from 'react';
|
|
import {Layout} from 'react-mdl';
|
|
import styles from './FullLoading.css';
|
|
import {CoralLogo} from 'coral-ui';
|
|
|
|
export const FullLoading = () => (
|
|
<Layout fixedDrawer>
|
|
<div className={styles.layout} >
|
|
<h1>Loading</h1>
|
|
<CoralLogo />
|
|
</div>
|
|
</Layout>
|
|
);
|