ConceptPortal-public/rsconcept/frontend/src/components/Help/HelpTermGraph.tsx

38 lines
1.3 KiB
TypeScript
Raw Normal View History

import InfoCstClass from '@/components/InfoCstClass';
import InfoCstStatus from '@/components/InfoCstStatus';
import Divider from '@/components/ui/Divider';
2023-08-23 18:11:42 +03:00
function HelpTermGraph() {
2023-12-28 14:04:44 +03:00
// prettier-ignore
2023-08-23 18:11:42 +03:00
return (
2024-02-22 11:35:27 +03:00
<div className='flex max-w-[80rem] min-w-[45rem]'>
2023-12-21 17:40:36 +03:00
<div>
2023-09-29 16:28:26 +03:00
<h1>Настройка графа</h1>
<p><b>Цвет</b> - выбор правила покраски узлов</p>
<p><b>Граф</b> - выбор модели расположения узлов</p>
<p><b>Удалить несвязанные</b> - скрыть одинокие вершины</p>
<p><b>Транзитивная редукция</b> - скрыть транзитивные пути</p>
2023-08-23 18:11:42 +03:00
2023-09-29 16:28:26 +03:00
<Divider margins='mt-2' />
<InfoCstStatus title='Статусы конституент' />
</div>
<Divider vertical margins='mx-3' />
<div>
2024-02-22 11:35:27 +03:00
<h1>Клавиши</h1>
<p><b>Клик на конституенту</b> - выделение</p>
<p><b>Клик на выделенную</b> - редактирование</p>
2023-09-29 16:28:26 +03:00
<p><b>Delete</b> - удалить выбранные</p>
<br />
2023-08-23 18:11:42 +03:00
2023-09-29 16:28:26 +03:00
<Divider margins='mt-2' />
2023-12-21 00:12:24 +03:00
<InfoCstClass header='Классы конституент' />
2023-08-23 18:11:42 +03:00
</div>
2023-09-29 16:28:26 +03:00
</div>);
2023-08-23 18:11:42 +03:00
}
2023-12-28 14:04:44 +03:00
export default HelpTermGraph;