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.
347 B · 19 lines
JavaScript
at main
12345678910111213141516171819const Notification = ({ notification }) => { const style = { padding: 10, margin: 10, border: 'solid', borderRadius: 5, borderWidth: 3 }
if (notification === '') return null
return ( <div style={style}> {notification} </div> )}
export default Notification