August 2, 2019

1. Hello React

    const rootElement = document.getElementById('root')
    const element = React.createElement('div', {
        // this is the props object
        className: 'container',
        children: ['Hello React']
    })
    ReactDOM.render(element, rootElement)

Tags: react