Initial Commit

This commit is contained in:
2026-03-19 20:31:34 -05:00
commit 12a79db143
11 changed files with 788 additions and 0 deletions

17
LabWise/LabWiseApp.swift Normal file
View File

@@ -0,0 +1,17 @@
//
// LabWiseApp.swift
// LabWise
//
// Created by Aditya Pulipaka on 3/19/26.
//
import SwiftUI
@main
struct LabWiseApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}