18 lines
255 B
Swift
18 lines
255 B
Swift
//
|
|
// EmployeeDirectoryApp.swift
|
|
// EmployeeDirectory
|
|
//
|
|
// Created by Matt Bruce on 3/3/25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct EmployeeDirectoryApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
EmployeeListView()
|
|
}
|
|
}
|
|
}
|