Files
supabase/web/spec/gen/components/Example.ts
2021-05-22 02:30:29 +00:00

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