import SwiftUI import Env import Models import Shimmer import Explore struct ExploreTab: View { @StateObject private var routeurPath = RouterPath() var body: some View { NavigationStack(path: $routeurPath.path) { ExploreView() .withAppRouteur() .withSheetDestinations(sheetDestinations: $routeurPath.presentedSheet) } .environmentObject(routeurPath) } }