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

9 lines
168 B
Plaintext
Raw Normal View History

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