mirror of
https://github.com/supabase/supabase.git
synced 2026-06-28 19:39:19 -04:00
10 lines
331 B
TypeScript
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')
|