IceCubesApp/IceCubesApp/App/Tabs/NotificationTab.swift
2022-12-20 09:37:07 +01:00

19 lines
426 B
Swift

import SwiftUI
import Timeline
import Routeur
import Network
import Notifications
struct NotificationsTab: View {
@StateObject private var routeurPath = RouterPath()
var body: some View {
NavigationStack(path: $routeurPath.path) {
NotificationsListView()
.withAppRouteur()
.withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet)
}
.environmentObject(routeurPath)
}
}