`StatelessWorkflow` is very nice, I'd love a new workflow which does not have state or output. proposed implementation: ```kotlin abstract class RenderingWorkflow<PropsT, RenderingT> : StatelessWorkflow<PropsT, Nothing, RenderingT>() ```