import { Typography } from "@scandic-hotels/design-system/Typography" import styles from "./section.module.css" import type { PropsWithChildren } from "react" interface SectionProps extends PropsWithChildren { title: string } export function Section({ children, title }: SectionProps) { return (

{title}

{children}
) }