Skip to content

Instantly share code, notes, and snippets.

@sparker888
Last active October 26, 2022 11:55
Show Gist options
  • Save sparker888/edb88fb0fbbebb2537bc3a6c36e2367e to your computer and use it in GitHub Desktop.
Save sparker888/edb88fb0fbbebb2537bc3a6c36e2367e to your computer and use it in GitHub Desktop.
React createElement

React.createElement syntax

Basic element object

const element = React.createElement("h1");
//returns an object similar to this one:
{
  type: 'h1',
  props: {}
}

Changing element props

React.createElement("h1", {className: "center", style: "color: red"})

Writing text

React.createElement("h1", {className: "center", style: "color: red"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment