if you create an object in `setContent` function, ...
# compose-android
b
if you create an object in
setContent
function, it'll get re-created on recompose right? ie:
Copy code
setContent {
   SomeComposable(
      vm = SomeViewModel(...)
   )
}
👌 8