2026-07-03 15:11:33 +02:00
|
|
|
import SwiftUI
|
|
|
|
|
|
2026-07-03 20:05:11 +02:00
|
|
|
/// The entry point of the Attendi sample app.
|
2026-07-03 15:11:33 +02:00
|
|
|
@main
|
|
|
|
|
struct AttendiApp: App {
|
2026-07-03 20:05:11 +02:00
|
|
|
|
|
|
|
|
// MARK: Body
|
|
|
|
|
|
|
|
|
|
/// The content of the app: a single window group showing the ``ContentView``.
|
2026-07-03 15:11:33 +02:00
|
|
|
var body: some Scene {
|
|
|
|
|
WindowGroup {
|
|
|
|
|
ContentView()
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-07-03 20:05:11 +02:00
|
|
|
|
2026-07-03 15:11:33 +02:00
|
|
|
}
|