ConceptPortal-public/rsconcept/frontend/src/components/man/HelpAPI.tsx

21 lines
934 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_repo} />
</p>
</div>
);
}
export default HelpAPI;