/
austin_s
/
react-interview-components
Обзор
Документация
Войти
/
austin_s
/
react-interview-components
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/index.js
8 строк
220 B
spanic
Initialize project using Create React App
27 авг 2023, 18:25
27 авг 2023, 18:25
7a19f83
Код
Авторство
О чём код?
import React from 'react'; import {createRoot} from 'react-dom/client'; import {App} from 'environment/App'; const container = document.getElementById('root'); const root = createRoot(container); root.render(<App />);