feat(home): 팔로잉 크리에이터 섹션을 추가한다

This commit is contained in:
Yu Sung
2026-07-01 00:04:17 +09:00
parent ae09776c9b
commit fb7d0c799f
6 changed files with 114 additions and 6 deletions

View File

@@ -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: "팔로잉")
}
}
}