mirror of
https://github.com/supabase/supabase.git
synced 2026-07-25 08:52:43 -04:00
10 lines
368 B
TypeScript
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).`
|
|
}
|