diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-04 19:06:48 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-04 19:06:48 +0200 |
| commit | dfbca424f0655779bcbcf56a88a1338e3af23739 (patch) | |
| tree | 2f50befa6de5052d6c0bada8c8c064e03431766c /app/client/common/loading.component.js | |
| parent | 91c47c22f2c71c524fd665f19186bb014c94ab31 (diff) | |
action divs
Diffstat (limited to 'app/client/common/loading.component.js')
| -rw-r--r-- | app/client/common/loading.component.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/client/common/loading.component.js b/app/client/common/loading.component.js index f8033db..290c7a6 100644 --- a/app/client/common/loading.component.js +++ b/app/client/common/loading.component.js @@ -5,8 +5,9 @@ import Progress from './progress.component' export default function Loading({progress}) { return ( <div className='loading'> - Loading<br/> - <Progress progress={progress} /> + Loading + <br/> + {progress && <Progress progress={progress}/>} </div> ) } |
