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’)

);

Share this post
[social_warfare]
React Installation
Creating an App

Get industry recognized certification – Contact us

keyboard_arrow_up