Meshtastic-Apple/MeshtasticClient/MeshtasticClientApp.swift
2021-08-20 07:56:05 -07:00

20 lines
357 B
Swift

//
// MeshtasticClientApp.swift
// MeshtasticClient
//
// Created by Garth Vander Houwen on 8/18/21.
//
import SwiftUI
@main
struct MeshtasticClientApp: App {
@StateObject private var modelData = ModelData()
var body: some Scene {
WindowGroup {
ContentView()
.environmentObject(modelData)
}
}
}