Skip to content

Instantly share code, notes, and snippets.

@jgrossophoff
Created February 16, 2016 10:48
Show Gist options
  • Save jgrossophoff/8521f21e6423d1e368ec to your computer and use it in GitHub Desktop.
Save jgrossophoff/8521f21e6423d1e368ec to your computer and use it in GitHub Desktop.
Vanilla React
return el(
el("table", null,
el("thead", null,
el("tr", null,
el("td", null, "First name"),
el("td", null, "Last name")
)
)
el("tbody", null,
el("tr", null,
el("td", null,this.state.firstname),
el("td", null, this.state.lastname)
)
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment