sodalive-ios/SodaLive/Sources/Explorer/ExplorerView.swift

21 lines
302 B
Swift

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