mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
14 lines
356 B
Plaintext
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}
|
|
/>
|