Get your own React server
import React from 'react';
import ReactDOM from 'react-dom/client';

class Car extends React.Component {
  render() {
    return <h2>Hi, I am a Car!</h2>;
  }
}

export default Car;

/*
Notice that you now have three files in your project:
"App.js", "index.js", and "index.html".
*/

              
localhost:3000