August 3, 2019

2. Hello JSX

    const rootElement = document.getElementById('root')
    const props = {
        className: 'container',
        children: 'Hello JSX'
    }
    const element = <div { ...props } />
    ReactDOM.render(element, rootElement)

Tags: react