Skip to content

Instantly share code, notes, and snippets.

@ralfting
Created July 14, 2019 19:15
Show Gist options
  • Select an option

  • Save ralfting/c1bb52ffa1a687cdfa2e95ef0a548e76 to your computer and use it in GitHub Desktop.

Select an option

Save ralfting/c1bb52ffa1a687cdfa2e95ef0a548e76 to your computer and use it in GitHub Desktop.
const Pet = () => {
return React.createElement(
'div', {},
[
React.createElement('h4', {}, 'Luna'),
React.createElement('h5', {}, 'Dog'),
React.createElement('h5', {}, 'Pug'),
],
)
}
const App = () => {
return React.createElement(
'div', {},
React.createElement(
'h3', {}, '-- Adopt me! --',
React.createElement(Pet),
React.createElement('h4', {}, '----'),
React.createElement(Pet),
React.createElement('h4', {}, '----'),
React.createElement(Pet),
React.createElement('h4', {}, '----')
),
);
};
ReactDOM.render(React.createElement(App), document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment