diff --git a/src/LoadingIndicator.tsx b/src/LoadingIndicator.tsx new file mode 100644 index 0000000..879bea9 --- /dev/null +++ b/src/LoadingIndicator.tsx @@ -0,0 +1,8 @@ +import * as React from 'react'; +import CircularProgress from 'material-ui/CircularProgress'; + +export default (props: any) => { + return ( + + ); +};