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