Skip to content

Instantly share code, notes, and snippets.

@alexkrolick
Last active September 8, 2017 06:53
Show Gist options
  • Save alexkrolick/1d21f4c590c27fb85676b91b3692a003 to your computer and use it in GitHub Desktop.
Save alexkrolick/1d21f4c590c27fb85676b91b3692a003 to your computer and use it in GitHub Desktop.
import React, { createElement as h } from 'react'
import { render } from 'react-dom'
const foo = h("i", {}, "Foo")
const bar = h("span", { style: "color: red;" }, "Bar", foo)
render(bar, document.body)
<span style="color: red;">
Bar <i>Foo</i>
<span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment