Last active
July 11, 2021 22:33
-
-
Save jasonleehodges/5e2894bf7d000347620d6a130f08c855 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
export const Badge = (props) => { | |
return ( | |
<div style={ | |
{backgroundColor: props.status === 'active' ? 'green' : 'red'} | |
}> | |
Status: {props.status} | |
</div> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment