mirror of
https://github.com/wassname/talk.git
synced 2026-07-08 04:35:11 +08:00
14 lines
305 B
JavaScript
14 lines
305 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>
|
|
);
|