Files
v10/site/src/components/installation/JSPicker.astro
T
2026-02-02 16:42:03 -06:00

14 lines
356 B
Plaintext

---
import type { SupportedFramework, SupportedStyle } from '@/types/docs';
import JSPickerClient from './JSPickerClient';
const { framework, style, slug } = Astro.params;
---
<JSPickerClient
client:idle
currentFramework={framework as SupportedFramework}
currentStyle={style as SupportedStyle<SupportedFramework>}
currentSlug={slug as string}
/>