17 lines
295 B
Swift
17 lines
295 B
Swift
import SwiftUI
|
|
|
|
/// The entry point of the Attendi sample app.
|
|
@main
|
|
struct AttendiApp: App {
|
|
|
|
// MARK: Body
|
|
|
|
/// The content of the app: a single window group showing the ``ContentView``.
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
|
|
}
|