interface roomCountProps { value: number; } export default function ({ value }: roomCountProps) { return (

{value}

); }