Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created June 23, 2019 22:29
Show Gist options
  • Save jsmanifest/ce2ef98bd45b5862d278d45e901d308b to your computer and use it in GitHub Desktop.
Save jsmanifest/ce2ef98bd45b5862d278d45e901d308b to your computer and use it in GitHub Desktop.
// At the top
import female from './images/female.jpg'
import male from './images/male.jpg'
// Somewhere above the App component
const FriendBox = ({ gender, ...props }) => (
<div
className={cx('box', {
'teal-border': gender === 'Male',
'hotpink-border': gender === 'Female',
})}
{...props}
/>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment