feat: add basic styling to checkbox
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import { serverClient } from "@/lib/trpc/server"
|
||||
|
||||
import HotelCard from "@/components/HotelReservation/HotelCard"
|
||||
import HotelFilter from "@/components/HotelReservation/SelectHotel/HotelFilter"
|
||||
|
||||
import styles from "./page.module.css"
|
||||
|
||||
@@ -17,7 +18,8 @@ export default async function SelectHotelPage({
|
||||
const hotels = [attributes]
|
||||
|
||||
return (
|
||||
<main>
|
||||
<main className={styles.main}>
|
||||
<HotelFilter />
|
||||
<section className={styles.section}>
|
||||
{hotels.map((hotel) => (
|
||||
<HotelCard key={hotel.name} hotel={hotel} />
|
||||
|
||||
Reference in New Issue
Block a user