diff options
Diffstat (limited to 'app/client/common/loading.component.js')
| -rw-r--r-- | app/client/common/loading.component.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/client/common/loading.component.js b/app/client/common/loading.component.js new file mode 100644 index 0000000..f8033db --- /dev/null +++ b/app/client/common/loading.component.js @@ -0,0 +1,12 @@ +import { h, Component } from 'preact' + +import Progress from './progress.component' + +export default function Loading({progress}) { + return ( + <div className='loading'> + Loading<br/> + <Progress progress={progress} /> + </div> + ) +} |
