sodalive-ios/SodaLive/Sources/Content/Main/ContentMainView.swift

21 lines
313 B
Swift

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