19 lines
		
	
	
		
			233 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			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()
 | 
						|
}
 |