xxxxxxxxxx
// check if the main file of the project (outside of the views group, just above Assets file) includes name_app.swift
// If not, add it before the struct
@main <------
struct Recipe_App: App {
var body: some Scene {
WindowGroup {
RecipeListView()
}
}
}