Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Last active March 16, 2016 02:39
Show Gist options
  • Save ryanflorence/829fbb91304a57cfc2f1 to your computer and use it in GitHub Desktop.
Save ryanflorence/829fbb91304a57cfc2f1 to your computer and use it in GitHub Desktop.
var $ = React.createElement
const App = (props) => (
$('div', { className: 'app'},
$('h1', null, 'Invoices'),
$('ul', { className: 'list'},
props.invoices.map((invoice) => (
$(InvoiceListItem, invoice)
))
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment