19 lines
		
	
	
		
			274 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			274 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
| //
 | |
| //  CalendarView.swift
 | |
| //  TrashTrack
 | |
| //
 | |
| //  Created by Oliver Hnát on 12.01.2024.
 | |
| //
 | |
| 
 | |
| import SwiftUI
 | |
| 
 | |
| struct CalendarView: View {
 | |
|     var body: some View {
 | |
|         Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
 | |
|     }
 | |
| }
 | |
| 
 | |
| #Preview {
 | |
|     CalendarView()
 | |
| }
 |