udemy-react-course/usereducer-starting-project/src/index.js

9 lines
206 B
JavaScript
Raw Normal View History

2022-09-22 18:36:13 +00:00
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);