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>;
  }
}
const container = document.getElementById('root');
const root = ReactDOM.createRoot(container);
root.render(<Car />);
              
localhost:3000