Files
supabase/apps/docs/internals/markdown-schema/MetricsStackCards.ts
2026-06-18 10:58:22 +00:00

10 lines
331 B
TypeScript

import { metricsStackOptions } from '../../components/MetricsStackCards.data'
import { withDocsBasePath } from '../internal-links'
export const MetricsStackCards = (): string =>
metricsStackOptions
.map(
({ title, description, href }) => `- [${title}](${withDocsBasePath(href)}). ${description}`
)
.join('\n')