2024-04-13 15:55:52 -05:00

15 lines
338 B
Swift

/// A top level route from the initial screen of the app to anywhere in the app.
///
public enum AppRoute: Equatable {
/// A route to the onboarding experience.
case onboarding
/// A route to the tab interface.
case tab(TabRoute)
}
public enum AppEvent: Equatable {
/// When the app has started.
case didStart
}