Skip to content

Instantly share code, notes, and snippets.

@jasonleehodges
Last active July 11, 2021 22:33
Show Gist options
  • Save jasonleehodges/350fc89250e2a4f13dbac89858f02127 to your computer and use it in GitHub Desktop.
Save jasonleehodges/350fc89250e2a4f13dbac89858f02127 to your computer and use it in GitHub Desktop.
export const status = {
active: 'Ready',
inactive: 'Inactive'
}
import React from 'react';
import { status } from './status';
export const Badge = (props) => {
return (
<div style={
{backgroundColor: props.status === 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