19 lines
325 B
Swift
19 lines
325 B
Swift
//
|
|
// CPythonDayCountdownApp.swift
|
|
// CPythonDayCountdown WatchKit Extension
|
|
//
|
|
// Created by Trevor Beaton on 9/9/20.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct CPythonDayCountdownApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
NavigationView {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|
|
}
|