ConceptPortal-public/rsconcept/frontend/src/components/Help/HelpConstituenta.tsx
2024-02-22 11:35:27 +03:00

28 lines
1.4 KiB
XML
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 InfoCstStatus from '@/components/InfoCstStatus';
import Divider from '@/components/ui/Divider';
function HelpConstituenta() {
// prettier-ignore
return (
<div className='leading-tight'>
<h1>Редактор конституент</h1>
<p><b>Сохранить изменения</b>: Ctrl + S или клик по кнопке Сохранить</p>
<p className='mt-1'><b>Формальное определение</b></p>
<p>- Ctrl + Пробел дополняет до незанятого имени</p>
<p>- специальные конструкции вводятся с помощью кнопок снизу</p>
<p className='mt-1'><b>Термин и Определение</b></p>
<p>- Ctrl + Пробел открывает редактирование отсылок</p>
<p className='mt-1'><b>Список конституент справа</b></p>
<p>- первая настройка - атрибуты конституенты</p>
<p>- вторая настройка - отбор по графу термов</p>
<p>- текущая конституента выделена цветом строки</p>
<p>- при наведении на имя конституенты отображаются атрибуты</p>
<Divider margins='my-2' />
<InfoCstStatus title='Статусы' />
</div>);
}
export default HelpConstituenta;