IceCubesApp/IceCubesApp/App/Tabs/ExploreTab.swift
2022-12-23 10:41:55 +01:00

19 lines
398 B
Swift

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