ConceptPortal-public/rsconcept/frontend/src/features/help/items/info/HelpAPI.tsx
Ivan 17b94b5e9a
Some checks are pending
Frontend CI / build (22.x) (push) Waiting to run
R: Refactoring folder structure: introducing features
2025-02-10 01:32:55 +03:00

21 lines
937 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';
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;