website-astro/src/pages/en/snippets/[slug].astro

9 lines
164 B
Plaintext

---
import Page from "../../fragments/[slug].astro"
export { getStaticPaths } from "../../fragments/[slug].astro"
const { props } = Astro
---
<Page {...props} />