sodalive-ios/SodaLive/Sources/App/SodaLiveApp.swift

18 lines
222 B
Swift

//
// SodaLiveApp.swift
// SodaLive
//
// Created by klaus on 2023/08/09.
//
import SwiftUI
@main
struct SodaLiveApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}