Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
362 Bytes
import React from 'react'
function Status(props) {
return (
<div>
{props.visi=="visible" ?
<div className="alert alert-warning" role="alert">
Try reloading the page inside the topic to remove any discrepancy
</div> : <div className="h-4 bg-transparent border-transparent " role="alert"></div>
}
</div>
)
}
export default Status