How to do it...

Let's build our first React application by following these steps:

  1. Create our React application with the following command:
 create-react-app my-first-react-app
  1. Go to the new application with cd my-first-react-app and start it with npm start.
  2. The application should now be running at http://localhost:3000.
  3. Create a new file called Home.js inside your src folder:
import React, { Component } from 'react';class Home extends Component {  render() {    return <h1>I'm Home Component</h1>;  }}export default Home;
File: src/Home.js
  1. You may have noticed that we are exporting our class component at the end of the file, but it's fine to export it directly on the class declaration, like this:
    import React, { Component } from 'react'; ...

Get React Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.