The React Hello World

// Import React and ReactDOM

import React from ‘react’

import ReactDOM from ‘react-dom’

// Render component into the DOM – only once per app

ReactDOM.render(

<h1>Hello, world!</h1>,

document.getElementById(‘root’)

);

React Installation
Creating an App

Get industry recognized certification – Contact us

keyboard_arrow_up