File size: 362 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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
|