summaryrefslogtreecommitdiff
path: root/app/client/common/loading.component.js
blob: 290c7a6cb4150be5421763475e7e7fc6b570bd9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { h, Component } from 'preact'

import Progress from './progress.component'

export default function Loading({progress}) {
  return (
    <div className='loading'>
      Loading
      <br/>
      {progress && <Progress progress={progress}/>}
    </div>
  )
}