diff options
| author | Dustin Mierau <dustin@mierau.me> | 2023-12-04 09:12:58 -0800 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2023-12-04 09:12:58 -0800 |
| commit | 471546236b8991f61d26c0e3aa8ee48b83b983af (patch) | |
| tree | b74331a8c8ea61ee7e1eaedfc7bbd1686bbc4702 /Hotline/HotlineApp.swift | |
| parent | 885119acdd27bd53ed3096285c3eca3e2d99ad70 (diff) | |
Starting to hash out a server view and tabs. Added research pdfs. etc.
Diffstat (limited to 'Hotline/HotlineApp.swift')
| -rw-r--r-- | Hotline/HotlineApp.swift | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Hotline/HotlineApp.swift b/Hotline/HotlineApp.swift index da49fd0..238ca48 100644 --- a/Hotline/HotlineApp.swift +++ b/Hotline/HotlineApp.swift @@ -16,9 +16,15 @@ struct HotlineApp: App { // } // }() + @State private var hotline = HotlineClient() + @State private var tracker = HotlineTrackerClient(tracker: HotlineTracker("hltracker.com")) + var body: some Scene { + WindowGroup { - TrackerView() + HotlineView() + .environment(hotline) + .environment(tracker) } // .modelContainer(sharedModelContainer) } |