Skip to content

Instantly share code, notes, and snippets.

@pomber
Created April 28, 2017 13:52
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 pomber/e1959c3f4d865292756fec17089bd825 to your computer and use it in GitHub Desktop.
Save pomber/e1959c3f4d865292756fec17089bd825 to your computer and use it in GitHub Desktop.
const element = createElement(
"div",
{ id: "container" },
createElement("input", { value: "foo", type: "text" }),
createElement(
"a",
{ href: "/bar" },
"bar"
),
createElement(
"span",
{ onClick: e => alert("Hi") },
"click me"
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment