Files
Outpost/Outpost/ContentView.swift
T
Puranjay Savar Mattas 43a10a6ec3 feat(app): add session store and root view routing
SessionStore owns sign-in state, the persisted server URL, and the
live OutlineAPIClient; RootView switches between the auth screen and
signed-in content and covers the transition with a splash instead of
tearing the login UI down abruptly. Drops the SwiftData Item
placeholder from the default Xcode template — unused once real content
replaced it.
2026-08-14 00:23:57 +01:00

6 lines
109 B
Swift

#if os(macOS)
typealias ContentView = ContentView_macOS
#else
typealias ContentView = ContentView_iOS
#endif