32 lines
937 B
JavaScript
Raw 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 PropTypes from "prop-types"; //Контроль свойств компонента
import {} from "@mui/material"; //Интерфейсные компоненты
//---------------
//Тело компонента
//---------------
//Контейнер типа события
const TasksGroup = () => {
//Генерация содержимого
return <div></div>;
};
//Контроль свойств компонента - Контейнер типа события
TasksGroup.propTypes = {};
//--------------------
//Интерфейс компонента
//--------------------
export { TasksGroup };