14 lines
273 B
Swift
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()
|
|
}
|
|
}
|