August 2017
Beginner
374 pages
10h 41m
English
Now, we can import both libraries and render simple text. Edit src/index.js and replace the contents with the following code:
import React from 'react' import ReactDOM from 'react-dom'
ReactDOM.render(
React.createElement('h1', {}, 'hello world!'),
The function signature for React.createElement is as follows:
React.createElement(type, props, children)
The HTML equivalent for this would be:
<type ...props>children</type>
Read now
Unlock full access