import { useState } from "react"; export default function useHotel() { const [roomId, setRoomId] = useState() return { roomId, setRoomId, } }