20 lines
292 B
Swift
20 lines
292 B
Swift
//
|
|
// ViewController.swift
|
|
// EmployeeDirectory
|
|
//
|
|
// Created by Matt Bruce on 1/20/25.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
class EmployeesViewController: UIViewController {
|
|
|
|
override func viewDidLoad() {
|
|
super.viewDidLoad()
|
|
// Do any additional setup after loading the view.
|
|
}
|
|
|
|
|
|
}
|
|
|