Created
March 8, 2021 17:59
-
-
Save lammertw/d0163bc090512d5654649b8882a5a5d1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct RestaurantDetailView_Previews: PreviewProvider { | |
static var previews: some View { | |
InnerView( | |
output: RestaurantDetailViewModelOutput( | |
name: "My restaurant", | |
priceCategory: "Expensive", | |
reservations: RestaurantDetailViewModelOutput.ReservationsLoading() | |
) | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment