diff --git a/Projects/App/Sources/Feature/UserManagementFeature/Sources/UserManagementView.swift b/Projects/App/Sources/Feature/UserManagementFeature/Sources/UserManagementView.swift new file mode 100644 index 0000000..ce17db0 --- /dev/null +++ b/Projects/App/Sources/Feature/UserManagementFeature/Sources/UserManagementView.swift @@ -0,0 +1,35 @@ +// +// UserManagementView.swift +// Expo-iOS +// +// Created by 서지완 on 1/5/25. +// Copyright © 2025 SchoolofCompany. All rights reserved. +// + +import SwiftUI + +struct UserManagementView: View { + @Environment(\.dismiss) var dismiss + + var body: some View { + ZStack { + HStack(spacing: 0) { + Button { + dismiss() + } label: { + ExpoIOSAsset.Assets.leftBackButton.swiftUIImage + .padding(.leading, 4) + } + + Spacer() + } + + Text("참가자 관리") + .expoFont(.body1R) + } + } +} + +#Preview { + UserManagementView() +}