Files
website/node_modules/@astrojs/starlight/components/StarlightPage.astro
2024-05-06 17:15:30 -04:00

14 lines
301 B
Plaintext

---
import {
generateStarlightPageRouteData,
type StarlightPageProps as Props,
} from '../utils/starlight-page';
import Page from './Page.astro';
export type StarlightPageProps = Props;
---
<Page {...await generateStarlightPageRouteData({ props: Astro.props, url: Astro.url })}>
<slot />
</Page>