aboutsummaryrefslogtreecommitdiff
path: root/part2/phonebook/src/index.js
blob: f3eb11d36b90f256dafb2d7691d7eceb3d11e24a (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'
import './index.css'

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