Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/Savy011/fullstackopen-exercises. My Exercise Submissions for FullStack Open fullstackopen.com/en
Something went wrong. Try again.
361 B · 19 lines
JavaScript
at main
12345678910111213141516171819const Notif = ({errorMessage}) => { if ( !errorMessage ) return null const style = { color: 'red', border: 'solid', borderRadius : 5, padding: 5, marginTop: 15, width: 'fit-content' } return ( <div style={style}> {errorMessage} </div>)}
export default Notif