Add a nicer loading indicator.

master
Tom Hacohen 2017-12-07 00:08:23 +00:00
parent 3bb8b6f101
commit 278ebacad1
1 changed files with 8 additions and 0 deletions

8
src/LoadingIndicator.tsx Normal file
View File

@ -0,0 +1,8 @@
import * as React from 'react';
import CircularProgress from 'material-ui/CircularProgress';
export default (props: any) => {
return (
<CircularProgress size={60} thickness={7} />
);
};