// // EmployeeDirectoryApp.swift // EmployeeDirectory // // Created by Matt Bruce on 3/3/25. // import SwiftUI @main struct EmployeeDirectoryApp: App { var body: some Scene { WindowGroup { ContentView() } } }