18 lines
274 B
Swift
18 lines
274 B
Swift
//
|
|
// OnCuePresenterApp.swift
|
|
// OnCuePresenter Watch App
|
|
//
|
|
// Created by Pradyun Setti on 22/06/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct OnCuePresenter_Watch_AppApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
MainViewPresenter()
|
|
}
|
|
}
|
|
}
|