Untitled

Untitled

<aside> 💡 when working with react I like to work with the .jsx extension although for the most part our application will work the same if we left the files with a .js extension

</aside>

import React from 'react';
import ReactDOM from 'react-dom/client';
import './styles.css';
import App from './App';

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>
);