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

9 lines
162 B
Plaintext
Raw Normal View History

2022-12-22 11:01:52 +01:00
---
import Page from "../../articles/[slug].astro"
export { getStaticPaths } from "../../articles/[slug].astro"
const { props } = Astro
---
<Page {...props} />