Initial Commit

This commit is contained in:
Owen Gretzinger
2025-07-10 12:10:56 -04:00
commit b9b1fbedd5
10 changed files with 473 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
//
// notetakerApp.swift
// notetaker
//
// Created by Owen Gretzinger on 2025-07-10.
//
import SwiftUI
@main
struct notetakerApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}