view Simoleon/SimoleonApp.swift @ 190:fd04c445482a

remove funding
author Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com>
date Thu, 06 Jan 2022 12:09:12 +0000
parents ba3ebe8cefe5
children
line wrap: on
line source

//
//  SimoleonApp.swift
//  Simoleon
//
//  Created by Dennis Concepción Martín on 8/12/21.
//

import SwiftUI

@main
struct SimoleonApp: App {
    let persistenceController = PersistenceController.shared

    var body: some Scene {
        WindowGroup {
            ContentView()
                .environment(\.managedObjectContext, persistenceController.container.viewContext)
        }
    }
}