21 lines
		
	
	
		
			313 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			313 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| //
 | |
| //  ContentMainView.swift
 | |
| //  SodaLive
 | |
| //
 | |
| //  Created by klaus on 2023/08/09.
 | |
| //
 | |
| 
 | |
| import SwiftUI
 | |
| 
 | |
| struct ContentMainView: View {
 | |
|     var body: some View {
 | |
|         Text("Content")
 | |
|     }
 | |
| }
 | |
| 
 | |
| struct ContentMainView_Previews: PreviewProvider {
 | |
|     static var previews: some View {
 | |
|         ContentMainView()
 | |
|     }
 | |
| }
 | 
