mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
20 lines
357 B
Swift
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)
|
|
}
|
|
}
|
|
}
|