diff options
| author | Dustin Mierau <dustin@mierau.me> | 2023-12-19 20:38:13 -0800 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2023-12-19 20:38:13 -0800 |
| commit | 4fd69c02a3e7b581bb9229865336c315153f3b18 (patch) | |
| tree | e6e11d872424196f2b4033077902126ad5556e40 /Hotline/HotlineApp.swift | |
| parent | 5e87b5927cd931d46fb5f72fb035480a95969a9f (diff) | |
Beginnings of a UI for macOS as well as some visual changes to iOS client. :)
Diffstat (limited to 'Hotline/HotlineApp.swift')
| -rw-r--r-- | Hotline/HotlineApp.swift | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Hotline/HotlineApp.swift b/Hotline/HotlineApp.swift deleted file mode 100644 index 61f44bb..0000000 --- a/Hotline/HotlineApp.swift +++ /dev/null @@ -1,17 +0,0 @@ -import SwiftUI -import SwiftData - -@main -struct HotlineApp: App { - @State private var appState = HotlineState() - - private var model = Hotline(trackerClient: HotlineTrackerClient(), client: HotlineClient()) - - var body: some Scene { - WindowGroup { - TrackerView() - .environment(appState) - .environment(model) - } - } -} |