summaryrefslogtreecommitdiff
path: root/src/layouts/PrevNext.astro
blob: 64db40b3750c30653d7a5c8d6515f69565c73719 (plain)
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} />