21 lines
301 B
Swift
21 lines
301 B
Swift
//
|
|
// TheNoiseClockApp.swift
|
|
// TheNoiseClock
|
|
//
|
|
// Created by Matt Bruce on 9/7/25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
/// App entry point and configuration
|
|
@main
|
|
struct TheNoiseClockApp: App {
|
|
|
|
// MARK: - Body
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|