Add button to show history placeholder from

This commit is contained in:
Daniel Haight 2021-12-14 22:25:59 +00:00
parent 249f4306bb
commit cd3c98cce4
1 changed files with 9 additions and 0 deletions

View File

@ -55,6 +55,15 @@ struct HomeView: View {
}
}
Section(header: Text("Modal Routes")) {
ForEach(modalRoutes) { routeValue in
Button(
action: { viewStore.send(.updateRoute(routeValue.route)) },
label: { Text("\(String(describing: routeValue.route))") }
)
}
}
Section(header: Text("Other Actions")) {
Button(
action: { viewStore.toggleSelectedTransaction() },