P8-Panels/app/index.js
2023-09-24 22:22:48 +03:00

20 lines
546 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
Парус 8 - Панели мониторинга
Точка входа в приложение
*/
//---------------------
//Подключение библиотек
//---------------------
import React from "react"; //React
import { createRoot } from "react-dom/client"; //Работа с DOM в React
import Root from "./root"; //Корневой компонент приложения
//-----------
//Точка входа
//-----------
const root = createRoot(document.getElementById("app-content"));
root.render(<Root />);