콘텐츠 메인, 콘텐츠 업로드 페이지 추가
This commit is contained in:
22
SodaLive/Sources/Content/Main/ContentMainCurationView.swift
Normal file
22
SodaLive/Sources/Content/Main/ContentMainCurationView.swift
Normal file
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// ContentMainCurationView.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/11.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct ContentMainCurationView: View {
|
||||
|
||||
let items: [GetAudioContentCurationResponse]
|
||||
|
||||
var body: some View {
|
||||
LazyVStack(spacing: 40) {
|
||||
ForEach(0..<items.count, id: \.self) {
|
||||
let item = items[$0]
|
||||
ContentMainCurationItemView(item: item)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user