add js onRemoved for nodes and different extensions for Composition

This commit is contained in:
2022-03-17 14:55:47 +06:00
parent 41ef86dbda
commit 7373fef964
5 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package dev.inmo.micro_utils.common.compose
import androidx.compose.runtime.Composition
import dev.inmo.micro_utils.common.onRemoved
import org.w3c.dom.Element
fun Composition.linkWithElement(element: Element) {
element.onRemoved { dispose() }
}