blob: 835ea2d5b62822086992f156abb51f871cb2ba65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
---
import Next from "./Pagination/Next.astro";
import Prev from "./Pagination/Prev.astro";
type Props = {
readonly nextUrl?: string;
readonly prevUrl?: string;
};
const { nextUrl, prevUrl } = Astro.props;
---
<style lang="scss">
div {
overflow: hidden;
padding: 3rem 0;
width: 100%;
}
</style>
<div>
{prevUrl && <Prev url={prevUrl} />}
{nextUrl && <Next url={nextUrl} />}
</div>
|