sodalive-ios/SodaLive/Sources/Audition/AuditionView.swift

19 lines
215 B
Swift

//
// AuditionView.swift
// SodaLive
//
// Created by klaus on 1/5/25.
//
import SwiftUI
struct AuditionView: View {
var body: some View {
Text("오디션")
}
}
#Preview {
AuditionView()
}