12 lines
163 B
Plaintext
12 lines
163 B
Plaintext
|
import SwiftUI
|
||
|
import {{ name }}UI
|
||
|
|
||
|
@main
|
||
|
struct {{ name }}App: App {
|
||
|
var body: some Scene {
|
||
|
WindowGroup {
|
||
|
ContentView()
|
||
|
}
|
||
|
}
|
||
|
}
|