19 lines
398 B
Swift
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)
|
||
|
}
|
||
|
}
|