mirror of
https://github.com/jeremysrand/ListenerApp.git
synced 2024-12-21 13:29:53 +00:00
22 lines
381 B
Swift
22 lines
381 B
Swift
//
|
|
// ListenerGSApp.swift
|
|
// ListenerGS
|
|
//
|
|
// Created by Jeremy Rand on 2021-07-16.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct ListenerGSApp: App {
|
|
@StateObject private var destinations = GSDestinations()
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
// ContentView(destinations: destinations)
|
|
// ContentView()
|
|
MainView()
|
|
}
|
|
}
|
|
}
|