diff options
author | Noah Loomans <noahloomans@gmail.com> | 2018-02-13 13:54:54 +0100 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2018-02-13 13:54:54 +0100 |
commit | 532d262f53de71eaf1718ab9668c404f635dffdf (patch) | |
tree | 667069f1a02a657158a15decbb8e4cb30eef01cd /src/client/react/components/presentational | |
parent | 6926de1108b1a084e133d5f8363f080d7c20a99f (diff) |
Add proper progress bar
Diffstat (limited to 'src/client/react/components/presentational')
-rw-r--r-- | src/client/react/components/presentational/Loading.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/client/react/components/presentational/Loading.js b/src/client/react/components/presentational/Loading.js index 2ab80da..a149de2 100644 --- a/src/client/react/components/presentational/Loading.js +++ b/src/client/react/components/presentational/Loading.js @@ -1,8 +1,11 @@ import React from 'react'; +import { LinearProgress } from 'rmwc/LinearProgress'; class Loading extends React.Component { render() { - return <div>Loading...</div>; + return ( + <LinearProgress determinate={false} /> + ); } } |