Setting the file. One moment.
Subchapter 7.104
references/restaurants/app-astro/pages/reservations.astro
ASTRO12 lines530 B
---
// Reservations page. The surface is client:only — availability is timezone- and
// party-specific, so nothing useful can server-render. Swap the island import to YOUR
// reservation component.
import SiteLayout from "../layouts/SiteLayout.astro";
import ReservationView from "../components/restaurants/ReservationView";
---
<SiteLayout title="Reservations" description="Reserve a table">
<h1 class="mb-8 text-2xl font-semibold tracking-tight">Reserve a table</h1>
<ReservationView client:only="react" />
</SiteLayout>