/
lizardking
/
react_final
Обзор
Документация
Войти
/
lizardking
/
react_final
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
old
src/index.tsx
13 строк
271 B
LizardKing
Initial commit
22 ноя 2025, 15:56
22 ноя 2025, 15:56
0df0d9e
Код
Авторство
О чём код?
import { App } from 'app/App' import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' const domNode = document.getElementById('root') as HTMLDivElement const root = createRoot(domNode) root.render( <StrictMode> <App /> </StrictMode> )