StoredProcedures.tsx14 lines · main
| 1 | import ContentSnippet from '../ContentSnippet' |
| 2 | import { DOCS_CONTENT } from '../ProjectAPIDocs.constants' |
| 3 | import type { ContentProps } from './Content.types' |
| 4 | |
| 5 | export const StoredProcedures = ({ language }: ContentProps) => { |
| 6 | return ( |
| 7 | <> |
| 8 | <ContentSnippet |
| 9 | selectedLanguage={language} |
| 10 | snippet={DOCS_CONTENT.storedProceduresIntroduction} |
| 11 | /> |
| 12 | </> |
| 13 | ) |
| 14 | } |