Greetings! I am making a small application according to the official tutorial from Apple, and I encountered such an error. Please help me solve this problem
Error in @main
Code
import SwiftUI
@main
struct MeetUpApp: App {
@State private var scrums = DailyScrum.sampleData
var body: some Scene {
WindowGroup {
NavigationView {
ScrumsView(scrums: $scrums)
}
}
}
}