Hi, why can't we create Composable with lambda ref...
# compose
a
Hi, why can't we create Composable with lambda references I mean
::MyComponent
, I tried to use it in
myArray.forEach(::MyComponent)
but it throws an error 🤔
a
Temporary limitation of the compiler plugin; write it
myArray.forEach { MyComponent(it) }
for now