Files
sodalive-ios/SodaLive/Sources/V2/Main/Home/Following/MainHomeFollowingView.swift
2026-06-27 00:09:04 +09:00

14 lines
273 B
Swift

import SwiftUI
struct MainHomeFollowingView: View {
var body: some View {
MainPlaceholderTabView(title: "팔로잉")
}
}
struct MainHomeFollowingView_Previews: PreviewProvider {
static var previews: some View {
MainHomeFollowingView()
}
}