import axios from "axios"; export const getRoom = async () => { try { const response = await axios.get("/room", {}); return response.data; } catch (error) { return error.response.data; } };