tuist/Templates/swiftui/app.stencil

12 lines
163 B
Plaintext

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