Added model and mvc

This commit is contained in:
2024-01-12 23:19:13 +01:00
parent c97c0e24d9
commit 7d5d013f86
4 changed files with 136 additions and 0 deletions

18
TrashTrack/DayView.swift Normal file
View File

@@ -0,0 +1,18 @@
//
// DayView.swift
// TrashTrack
//
// Created by Oliver Hnát on 12.01.2024.
//
import SwiftUI
struct DayView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
DayView()
}