mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 06:54:21 +08:00
13 lines
208 B
TypeScript
13 lines
208 B
TypeScript
type params = { name: string; description: string; tabs: string }
|
|
|
|
const Example = ({ name, description = '', tabs = '' }: params) =>
|
|
`
|
|
### ${name}
|
|
|
|
${description}
|
|
|
|
${tabs}
|
|
`.trim()
|
|
|
|
export default Example
|