aboutsummaryrefslogtreecommitdiff
path: root/part2/countrydata/src/index.js
blob: e36818fb4d8dd159cbe303640686e5f4bab72bcb (plain)
1
2
3
4
5
6
7
8
9
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 />
)