by Nichole Treadway
April 15, 2021
This is a test post to test the capabilities of this blog.
class RecipeListViewModel: ObservableObject {
enum State {
case empty
case loading
case loaded
}
@Published private(set) var recipes: [Recipe] = []
}