mirror of
https://github.com/jeremysrand/ListenerApp.git
synced 2024-10-11 11:23:46 +00:00
26 lines
396 B
Swift
26 lines
396 B
Swift
//
|
|
// MainView.swift
|
|
// ListenerGS
|
|
//
|
|
// Created by Jeremy Rand on 2021-10-26.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct MainView: View {
|
|
var body: some View {
|
|
NavigationView {
|
|
DestinationsView()
|
|
ListenerInfoView()
|
|
}
|
|
}
|
|
}
|
|
|
|
struct MainView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
Group {
|
|
MainView()
|
|
}
|
|
}
|
|
}
|