Portal/rsconcept/frontend/src/pages/ManualsPage/items/HelpAPI.tsx
IRBorisov bcc88492cc
Some checks are pending
Frontend CI / build (18.x) (push) Waiting to run
Improve manuals
2024-06-18 20:11:15 +03:00

21 lines
936 B
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 TextURL from '@/components/ui/TextURL';
import { external_urls } from '@/utils/constants';
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>
);
}
export default HelpAPI;