Portal/rsconcept/frontend/src/features/help/items/help-info.tsx
2025-03-12 12:04:23 +03:00

17 lines
548 B
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 { Subtopics } from '../components/subtopics';
import { HelpTopic } from '../models/help-topic';
export function HelpInfo() {
return (
<div>
<h1>Справочная информация и документы</h1>
<p>
Раздел содержит различные документы, задающие правовой статус Портала,
<br />а также документацию для разработчиков.
</p>
<Subtopics headTopic={HelpTopic.INFO} />
</div>
);
}