Files
supabase/apps/docs/internals/markdown-schema/WrapperDashboardIntegration.ts

10 lines
368 B
TypeScript

export const WrapperDashboardIntegration = ({
props,
}: {
props: Record<string, unknown>
}): string => {
const title = props.title ? String(props.title) : 'this'
const path = String(props.path ?? '')
return `> You can enable the ${title} wrapper right from the [Supabase dashboard](https://supabase.com/dashboard/project/_/integrations/${path}/overview).`
}