12 lines
240 B
TypeScript
12 lines
240 B
TypeScript
import Form from "@/components/Forms/BookingWidget"
|
|
|
|
import styles from "./bookingWidget.module.css"
|
|
|
|
export default async function BookingWidget() {
|
|
return (
|
|
<section className={styles.container}>
|
|
<Form />
|
|
</section>
|
|
)
|
|
}
|