ConceptPortal-public/rsconcept/frontend/src/features/help/items/info/HelpAPI.tsx
Ivan 74473f4cb5
Some checks are pending
Frontend CI / build (22.x) (push) Waiting to run
R: Remove all default exports
2025-02-19 23:30:35 +03:00

19 lines
919 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 { TextURL } from '@/components/Control';
import { external_urls } from '@/utils/constants';
export function HelpAPI() {
return (
<div>
<h1>Программный интерфейс Портала</h1>
<p>В качестве программного интерфейса сервера используется REST API, реализованный с помощью Django.</p>
<p>На данный момент API находится в разработке, поэтому поддержка внешних запросов не производится.</p>
<p>
С описанием интерфейса можно ознакомиться <TextURL text='по ссылке' href={external_urls.restAPI} />.
</p>
<p>
<TextURL text='Принять участие в разработке' href={external_urls.git_portal} />
</p>
</div>
);
}