크리에이터 채널 페이지 추가

This commit is contained in:
Yu Sung
2023-08-11 18:33:48 +09:00
parent a167840162
commit a8338e6fea
69 changed files with 4087 additions and 10 deletions

View File

@@ -86,6 +86,18 @@ struct ContentView: View {
case .createContent:
ContentCreateView()
case .liveReservationComplete(let response):
LiveReservationCompleteView(reservationCompleteData: response)
case .creatorDetail(let userId):
UserProfileView(userId: userId)
case .followerList(let userId):
FollowerListView(userId: userId)
case .creatorNoticeWrite(let notice):
CreatorNoticeWriteView(notice: notice)
default:
EmptyView()
.frame(width: 0, height: 0, alignment: .topLeading)