Browse Source

Remove redundnant Hr definition since we have it already in DOM API

pull/771/head
Shagen Ogandzhanian 4 years ago
parent
commit
379fa42e23
  1. 11
      examples/web_landing/src/jsMain/kotlin/com/sample/content/IntroSection.kt

11
examples/web_landing/src/jsMain/kotlin/com/sample/content/IntroSection.kt

@ -222,14 +222,3 @@ private fun ComposeWebStatusMessage() {
}
}
}
@Composable
fun Hr(
attrs: (AttrsBuilder<Tag.Div>.() -> Unit) = {}
) {
TagElement<Tag.Div, HTMLElement>(
tagName = "hr",
applyAttrs = attrs,
content = { }
)
}
Loading…
Cancel
Save