feat(SW-3289): replace sidepeek * fix(SW-3289): replace sidepeek * fix(SW-3289): add wrapping prop and change prop name to buttonVariant * fix(SW-3289): replace body with typography * fix(SW-3289): fix intl message Approved-by: Joakim Jäderberg
10 lines
286 B
TypeScript
10 lines
286 B
TypeScript
import styles from "./layout.module.css"
|
|
|
|
import type { LangParams, LayoutArgs } from "@/types/params"
|
|
|
|
export default function StandardHotelReservationLayout({
|
|
children,
|
|
}: React.PropsWithChildren<LayoutArgs<LangParams>>) {
|
|
return <div className={styles.layout}>{children}</div>
|
|
}
|