1 2 3 4 5 6 7 8 9 10 11 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> ) }