11 lines
222 B
Swift
11 lines
222 B
Swift
import SwiftUI
|
|
|
|
struct MainContentAudioRankingEmptyStateView: View {
|
|
let message: String
|
|
|
|
var body: some View {
|
|
MainContentAudioEmptyStateView(message: message)
|
|
.background(Color.black)
|
|
}
|
|
}
|