IceCubes/IceCubesApp/App/Tabs/ExploreTab.swift

19 lines
398 B
Swift
Raw Normal View History

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