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> ) }