Files
Project_Velocity/iOS/App/VelocityApp.swift

11 lines
141 B
Swift

import SwiftUI
@main
struct VelocityApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}