1234567891011121314 |
- import { GET_ROOM } from '../utils/apiList'
- import { request, Response } from '../utils/http'
- export const fetchRoom = async (roomId: string) => {
- const res = await request.get(GET_ROOM, {
- roomId: roomId
- })
- console.log('res', res)
- }
|