cc: Remove unused empty tags in `InfoBox.js`

This commit is contained in:
Shreya 2021-07-12 11:52:18 +05:30
parent e16b019b85
commit 9cb6dca220
1 changed files with 5 additions and 6 deletions

View File

@ -6,12 +6,11 @@ class InfoBox extends React.Component {
render() {
return (
<>
<div className='alert alert-info'>
<FontAwesomeIcon icon={faInfoCircle} style={{'marginRight': '5px'}}/>
{this.props.schema.info}
</div>
</>);
);
}
}