Skip to content

Instantly share code, notes, and snippets.

@ts-ign0re
Created July 23, 2015 02:56
Show Gist options
  • Save ts-ign0re/e1e22c3c3e8355e675f7 to your computer and use it in GitHub Desktop.
Save ts-ign0re/e1e22c3c3e8355e675f7 to your computer and use it in GitHub Desktop.
var btn =
[
{
buttonName: 'Button',
amount: 200,
isActive: false,
},
{
buttonName: 'Button',
amount: 400,
isActive: false,
}
].map(function(r) {
return (
<Button buttonName={r.buttonName} icon={r.icon} isActive={r.isActive} amount={r.amount}></Button>
)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment