Skip to content

Instantly share code, notes, and snippets.

@RyanCCollins
Created June 28, 2017 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RyanCCollins/7f01fb2c593a6f1ddc91de02acc69cc5 to your computer and use it in GitHub Desktop.
Save RyanCCollins/7f01fb2c593a6f1ddc91de02acc69cc5 to your computer and use it in GitHub Desktop.
Switch in IIFE
function IconPicker({ type }) {
<div>
{(() => {
switch(type) {
case 'Foo':
return <Foo />;
case 'Bar':
return <Bar />;
}
})()}
</div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment