9 lines
285 B
Plaintext
9 lines
285 B
Plaintext
|
---
|
||
|
import PlaygroundComponent from '@components/Playground';
|
||
|
import StarlightPage from '@astrojs/starlight/components/StarlightPage.astro';
|
||
|
---
|
||
|
|
||
|
<StarlightPage frontmatter={{ title: 'Playground', template: "splash" }}>
|
||
|
<PlaygroundComponent client:only="react" />
|
||
|
</StarlightPage>
|