Vinit Khandelwal is a MERN stack developer from Pune. He has extensive experience in MongoDB, NodeJS, ReactJS, AWS, GCP, and Python. Learn with his snippets on ReactJS and NodeJS.
Hello World in ReactJS App
Below example is all you need to launch a most basic app in React JS.
app.js
import React from 'react';
import ReactDOM from 'react-dom';
class App extends React.Component {
render() {
return <h1>Hello World!</h1>;
}
}
ReactDOM.render(<App />, document.getElementById('root'));
Comments
Post a Comment