feat(home): 팔로잉 크리에이터 섹션을 추가한다
This commit is contained in:
@@ -1,8 +1,21 @@
|
||||
import SwiftUI
|
||||
|
||||
struct MainHomeFollowingView: View {
|
||||
let onTapFollowingAll: () -> Void
|
||||
|
||||
init(onTapFollowingAll: @escaping () -> Void = {}) {
|
||||
self.onTapFollowingAll = onTapFollowingAll
|
||||
}
|
||||
|
||||
var body: some View {
|
||||
MainPlaceholderTabView(title: "팔로잉")
|
||||
VStack(spacing: 0) {
|
||||
MainHomeFollowingCreatorSection(
|
||||
followingCreators: [],
|
||||
onTapAll: onTapFollowingAll
|
||||
)
|
||||
|
||||
MainPlaceholderTabView(title: "팔로잉")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user