|
//
|
|
// 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()
|
|
}
|
|
}
|