IOS_Boss/IOS_study/PostJobView.swift
2025-07-01 11:41:38 +08:00

18 lines
294 B
Swift

//
// PostJobView.swift
// IOS_study
//
// Created by CC-star on 2025/6/28.
//
import SwiftUI
struct PostJobView: View {
@State var naviPath = NavigationPath()
var body: some View {
NavigationStack(path: $naviPath) {
PostPLJobIView(naviPath: $naviPath)
}
}
}