I’m curious - what does the `MoleculePresenter` in...
# squarelibraries
s
I’m curious - what does the
MoleculePresenter
interface actually look like? The example given in your blog post doesn’t seem possible without generics:
Copy code
class CounterPresenter @Inject constructor(
  private val randomService: RandomService,
) : MoleculePresenter {
  @Composable
  override fun Present(events: Flow<CounterEvent>) : CounterModel {
    // ...
  }
}