1 2 3 4 5 6 7 8 9 10 11 12 13
--- import PrevNextNav from "@components/templates/PrevNextNav.astro"; interface Props { previous?: string | URL; next?: string | URL; label?: string; } --- <PrevNextNav {...Astro.props} /> <slot /> <PrevNextNav {...Astro.props} />