diff options
Diffstat (limited to 'Hotline/Views/HotlineView.swift')
| -rw-r--r-- | Hotline/Views/HotlineView.swift | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Hotline/Views/HotlineView.swift b/Hotline/Views/HotlineView.swift deleted file mode 100644 index f950dd7..0000000 --- a/Hotline/Views/HotlineView.swift +++ /dev/null @@ -1,17 +0,0 @@ -import SwiftUI - -struct HotlineView: View { - @Environment(HotlineState.self) private var appState - @Environment(HotlineClient.self) private var hotline - @Environment(HotlineTrackerClient.self) private var tracker - - var body: some View { - TrackerView() - } -} - -#Preview { - HotlineView() - .environment(HotlineClient()) - .environment(HotlineTrackerClient(tracker: HotlineTracker("hltracker.com"))) -} |