Initial Commit

This commit is contained in:
Trey t
2022-01-10 08:44:49 -06:00
commit edd65e891d
17 changed files with 1273 additions and 0 deletions

20
Shared/FeelsApp.swift Normal file
View File

@@ -0,0 +1,20 @@
//
// FeelsApp.swift
// Shared
//
// Created by Trey Tartt on 1/10/22.
//
import SwiftUI
@main
struct FeelsApp: App {
let persistenceController = PersistenceController.shared
var body: some Scene {
WindowGroup {
ContentView()
.environment(\.managedObjectContext, persistenceController.container.viewContext)
}
}
}