import React from 'react' import './Progress.css' // show: boolean // progress: number // steps: number // text: string // failed: boolean export function Progress(props) { return (
{ props.text && props.text.length > 0 ? (

{props.text}

) : null}
) }