PyLeap-iOS/PyLeap/PyLeapApp.swift
2022-09-12 14:12:04 -04:00

19 lines
294 B
Swift

//
// PyLeapApp.swift
// PyLeap
//
// Created by Trevor Beaton on 6/10/21.
import SwiftUI
@main
struct PyLeapApp: App {
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
var body: some Scene {
WindowGroup {
RootView()
}
}
}