Files
sodalive-ios/SodaLive/Sources/Home/HomeCurationView.swift
2025-07-11 12:18:37 +09:00

19 lines
233 B
Swift

//
// HomeCurationView.swift
// SodaLive
//
// Created by klaus on 7/10/25.
//
import SwiftUI
struct HomeCurationView: View {
var body: some View {
VStack(spacing: 30) {}
}
}
#Preview {
HomeCurationView()
}