Add a nicer loading indicator.

master
Tom Hacohen 7 years ago
parent 3bb8b6f101
commit 278ebacad1

@ -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} />
);
};
Loading…
Cancel
Save