diff --git a/Piper/Sources/App/PiperApp.swift b/Piper/Sources/App/PiperApp.swift index b783cb0..77789e4 100644 --- a/Piper/Sources/App/PiperApp.swift +++ b/Piper/Sources/App/PiperApp.swift @@ -11,6 +11,9 @@ import SwiftData @main struct PiperApp: App { + + // MARK: Properties + var sharedModelContainer: ModelContainer = { let schema = Schema([ Item.self, @@ -23,11 +26,15 @@ struct PiperApp: App { fatalError("Could not create ModelContainer: \(error)") } }() + + // MARK: Body var body: some Scene { - WindowGroup { - ContentView() + MenuBarExtra { + EmptyView() + } label: { + Image(systemName: "circle.fill") } - .modelContainer(sharedModelContainer) } + }