Skip to content

Instantly share code, notes, and snippets.

@jasonleehodges
Last active July 11, 2021 22:33
Show Gist options
  • Save jasonleehodges/5e2894bf7d000347620d6a130f08c855 to your computer and use it in GitHub Desktop.
Save jasonleehodges/5e2894bf7d000347620d6a130f08c855 to your computer and use it in GitHub Desktop.
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