From 278ebacad18c1cfa256b0fe2f166340b4d87484b Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 7 Dec 2017 00:08:23 +0000 Subject: [PATCH] Add a nicer loading indicator. --- src/LoadingIndicator.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/LoadingIndicator.tsx 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 ( + + ); +};