Skip to content

Commit

Permalink
Update templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Kernald committed Sep 8, 2021
1 parent de7f495 commit 55fc59f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions fileTemplates/Stateful Workflow.kt
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ object $NAME : StatefulWorkflow<$props_type, $state_type, $output_type, $renderi
): $state_type = TODO("Initialize state")

override fun render(
props: $props_type,
state: $state_type,
renderProps: $props_type,
renderState: $state_type,
context: RenderContext
): $rendering_type {
TODO("Render")
Expand Down
2 changes: 1 addition & 1 deletion fileTemplates/Stateless Workflow.kt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ object $NAME : StatelessWorkflow<$props_type, $output_type, $rendering_type>() {
#end

override fun render(
props: $props_type,
renderProps: $props_type,
context: RenderContext
): $rendering_type {
TODO("Render")
Expand Down

0 comments on commit 55fc59f

Please sign in to comment.