// // TalkView.swift // SodaLive // // Created by klaus on 8/29/25. // import SwiftUI struct TalkView: View { @StateObject var viewModel = TalkViewModel() var body: some View { BaseView(isLoading: $viewModel.isLoading) { if viewModel.talkRooms.isEmpty { Text("대화 중인 톡이 없습니다") .appFont(size: 20, weight: .regular) .foregroundColor(.white) } else { ScrollView(.vertical, showsIndicators: false) { LazyVStack(spacing: 24) { ForEach(0..