Skip to content

Instantly share code, notes, and snippets.

@Shadid12
Created November 26, 2019 18:05
Show Gist options
  • Save Shadid12/31a94dfd947d030942af22110a6ee1fb to your computer and use it in GitHub Desktop.
Save Shadid12/31a94dfd947d030942af22110a6ee1fb to your computer and use it in GitHub Desktop.
function App() {
return (
<div>
{cards.map(card => {
switch (card.type) {
case "A":
return <A />;
case 'B':
return <B />;
case 'C':
return <C />;
case 'D':
return <D />;
default:
return null;
}
})}
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment