Files
sodalive-ios/SodaLive/Sources/Chat/Talk/Room/ChatRoomView.swift
2025-09-02 23:55:46 +09:00

24 lines
327 B
Swift

//
// ChatRoomView.swift
// SodaLive
//
// Created by klaus on 9/2/25.
//
import SwiftUI
struct ChatRoomView: View {
@StateObject var viewModel = ChatRoomViewModel()
var body: some View {
BaseView(isLoading: $viewModel.isLoading) {
}
}
}
#Preview {
ChatRoomView()
}