Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created February 24, 2020 23:25
Show Gist options
  • Save manakuro/5633c09edc4c0d9378536fd3cdfd3ea9 to your computer and use it in GitHub Desktop.
Save manakuro/5633c09edc4c0d9378536fd3cdfd3ea9 to your computer and use it in GitHub Desktop.
const getColoredComponent = color => {
if(color === 'blue') { return <BlueComponent/>; }
if(color === 'red') { return <RedComponent/>; }
if(color === 'green') { return <GreenComponent/>; }
}
const Component = props =>
<div className='myComponent'>
{getColoredComponent()}
</div>
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment