view is created and responsive, I need now to implement the result processing of the actions

This commit is contained in:
Mauro Romito
2022-12-12 17:34:06 +01:00
parent 8d41c5a5e2
commit 27c4ba45fd
6 changed files with 168 additions and 66 deletions
@@ -22,7 +22,7 @@ enum MockComposerLinkActionScreenState: MockScreenState, CaseIterable {
case create
var screenType: Any.Type {
ComposerLinkActionView.self
ComposerLinkAction.self
}
var screenView: ([Any], AnyView) {
@@ -37,7 +37,7 @@ enum MockComposerLinkActionScreenState: MockScreenState, CaseIterable {
}
return (
[viewModel],
AnyView(ComposerLinkActionView(viewModel: viewModel.context))
AnyView(ComposerLinkAction(viewModel: viewModel.context))
)
}
}