Files
tabler/docs/components/CdnImportPlugin.astro

13 lines
240 B
Plaintext

---
import { Code } from 'astro:components'
import { cdnPluginSnippet } from '@lib/cdn-snippets.ts'
interface Props {
plugins: string[]
}
const { plugins }: Props = Astro.props
---
<Code lang="html" code={cdnPluginSnippet(plugins)} />