IceCubes/IceCubesApp/App/Tabs/TimelineTab.swift
2022-12-22 10:53:36 +01:00

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)
}
}