feat(home): 홈 탭 shell을 연결한다

This commit is contained in:
Yu Sung
2026-06-27 00:09:04 +09:00
parent 5757705b12
commit 394e7ebc34
8 changed files with 354 additions and 13 deletions

View File

@@ -0,0 +1,13 @@
import SwiftUI
struct MainHomeRankingView: View {
var body: some View {
MainPlaceholderTabView(title: "랭킹")
}
}
struct MainHomeRankingView_Previews: PreviewProvider {
static var previews: some View {
MainHomeRankingView()
}
}