mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-28 16:00:40 +01:00
18 lines
387 B
Swift
18 lines
387 B
Swift
import SwiftUI
|
|
import Timeline
|
|
import Env
|
|
import Network
|
|
|
|
struct TimelineTab: View {
|
|
@StateObject private var routeurPath = RouterPath()
|
|
|
|
var body: some View {
|
|
NavigationStack(path: $routeurPath.path) {
|
|
TimelineView()
|
|
.withAppRouteur()
|
|
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
|
|
}
|
|
.environmentObject(routeurPath)
|
|
}
|
|
}
|