ConceptPortal-public/rsconcept/frontend/src/components/Help/HelpTermGraph.tsx
2023-09-10 20:17:18 +03:00

36 lines
1.3 KiB
TypeScript
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.

import Divider from '../Common/Divider';
import InfoCstClass from './InfoCstClass';
import InfoCstStatus from './InfoCstStatus';
function HelpTermGraph() {
return (
<div className='flex'>
<div>
<h1>Настройка графа</h1>
<p><b>Цвет</b> - выбор правила покраски узлов</p>
<p><b>Граф</b> - выбор модели расположения узлов</p>
<p><b>Удалить несвязанные</b> - скрыть одинокие вершины</p>
<p><b>Транзитивная редукция</b> - скрыть транзитивные пути</p>
<Divider margins='mt-2' />
<InfoCstStatus title='Статусы конституент' />
</div>
<Divider vertical margins='mx-3' />
<div>
<h1>Горячие клавиши</h1>
<p><b>Клик на конституенту</b> - выделение, включая скрытые конституенты</p>
<p><b>Двойной клик</b> - редактирование конституенты</p>
<p><b>Delete</b> - удалить выбранные</p>
<br />
<Divider margins='mt-2' />
<InfoCstClass title='Классы конституент' />
</div>
</div>
);
}
export default HelpTermGraph;