forked from Aaron/Kino-Website
11 lines
216 B
Plaintext
11 lines
216 B
Plaintext
---
|
|
import BaseLayout from "../layouts/BaseLayout.astro";
|
|
import CheckoutView from "../components/CheckoutView.astro";
|
|
---
|
|
|
|
<BaseLayout title="Checkout">
|
|
<main>
|
|
<CheckoutView />
|
|
</main>
|
|
</BaseLayout>
|