mirror of
https://github.com/supabase/supabase.git
synced 2026-05-11 03:10:16 -04:00
15 lines
630 B
TypeScript
15 lines
630 B
TypeScript
import ContentSnippet from '../ContentSnippet'
|
|
import { DOCS_CONTENT } from '../ProjectAPIDocs.constants'
|
|
import type { ContentProps } from './Content.types'
|
|
|
|
export const EdgeFunctions = ({ language }: ContentProps) => {
|
|
return (
|
|
<>
|
|
<ContentSnippet selectedLanguage={language} snippet={DOCS_CONTENT.edgeFunctions} />
|
|
<ContentSnippet selectedLanguage={language} snippet={DOCS_CONTENT.edgeFunctionsPreReq} />
|
|
<ContentSnippet selectedLanguage={language} snippet={DOCS_CONTENT.createEdgeFunction} />
|
|
<ContentSnippet selectedLanguage={language} snippet={DOCS_CONTENT.deployEdgeFunction} />
|
|
</>
|
|
)
|
|
}
|