Hello World

import SwiftUI

@main
struct ScrumdingerApp: App {
    var body: some Scene {
        WindowGroup {
            MeetingView()
        }
    }
}
//code snippet

The app’s body property returns a Scene that contains a view hierarchy representing the primary user interface for the app.

앱의 진입점으로 사용할 뷰를 지정

&ref