diff --git a/src/jsMain/kotlin/dev/inmo/jsuikit/elements/Grid.kt b/src/jsMain/kotlin/dev/inmo/jsuikit/elements/Grid.kt index d0c357e..bc31bce 100644 --- a/src/jsMain/kotlin/dev/inmo/jsuikit/elements/Grid.kt +++ b/src/jsMain/kotlin/dev/inmo/jsuikit/elements/Grid.kt @@ -10,7 +10,7 @@ import org.w3c.dom.HTMLDivElement fun GridColumn( vararg modifiers: UIKitModifier, attributesCustomizer: AttrBuilderContext = {}, - builder: @Composable ElementScope.() -> Unit + builder: @Composable ElementScope.() -> Unit = {} ) { Div( { @@ -30,7 +30,7 @@ fun Grid( marginClass: String? = null, firstColumnClass: String? = null, attributesCustomizer: AttrBuilderContext = {}, - builder: @Composable ElementScope.() -> Unit + builder: @Composable ElementScope.() -> Unit = {} ) { val attrs = listOfNotNull( if (masonry) "masonry" to "true" else null,