aboutsummaryrefslogtreecommitdiff
path: root/part2/phonebook/src/index.js
blob: 68a05ff7fcba22e357a7a1aa9d5f6e4b7f9c8a01 (plain)
1
2
3
4
5
6
7
8
9
10
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';


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