From 379fa42e2367ecf75cb83f1bbec4d61fd925d76f Mon Sep 17 00:00:00 2001 From: Shagen Ogandzhanian Date: Thu, 10 Jun 2021 19:44:18 +0200 Subject: [PATCH] Remove redundnant Hr definition since we have it already in DOM API --- .../jsMain/kotlin/com/sample/content/IntroSection.kt | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/examples/web_landing/src/jsMain/kotlin/com/sample/content/IntroSection.kt b/examples/web_landing/src/jsMain/kotlin/com/sample/content/IntroSection.kt index 54525d05..ec475272 100644 --- a/examples/web_landing/src/jsMain/kotlin/com/sample/content/IntroSection.kt +++ b/examples/web_landing/src/jsMain/kotlin/com/sample/content/IntroSection.kt @@ -221,15 +221,4 @@ private fun ComposeWebStatusMessage() { } } } -} - -@Composable -fun Hr( - attrs: (AttrsBuilder.() -> Unit) = {} -) { - TagElement( - tagName = "hr", - applyAttrs = attrs, - content = { } - ) } \ No newline at end of file