sodalive-ios/SodaLive/Sources/Live/LiveView.swift

21 lines
282 B
Swift

//
// LiveView.swift
// SodaLive
//
// Created by klaus on 2023/08/09.
//
import SwiftUI
struct LiveView: View {
var body: some View {
Text("Live")
}
}
struct LiveView_Previews: PreviewProvider {
static var previews: some View {
LiveView()
}
}