# App.swift

```swift
import SwiftUI

@main
struct <Project>App: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}
```