ListenerApp/ListenerGS/ListenerGSApp.swift

22 lines
381 B
Swift
Raw Normal View History

2021-07-16 16:46:54 +00:00
//
2021-09-16 02:42:53 +00:00
// ListenerGSApp.swift
// ListenerGS
2021-07-16 16:46:54 +00:00
//
// Created by Jeremy Rand on 2021-07-16.
//
import SwiftUI
@main
2021-09-16 02:42:53 +00:00
struct ListenerGSApp: App {
@StateObject private var destinations = GSDestinations()
2021-07-16 16:46:54 +00:00
var body: some Scene {
WindowGroup {
// ContentView(destinations: destinations)
// ContentView()
MainView()
2021-07-16 16:46:54 +00:00
}
}
}