Abhimanyu
Abhimanyu

Reputation: 14877

How to create an anchor in Jetpack Compose Web?

How to create the equivalent compose code for an HTML anchor tag?

HTML code

<a href="https://www.w3schools.com">Visit W3Schools.com!</a>  

Upvotes: 0

Views: 53

Answers (1)

Sandeep Karanam
Sandeep Karanam

Reputation: 68

import org.jetbrains.compose.web.dom.A
import org.jetbrains.compose.web.dom.Text

A(href = "https://www.w3schools.com") {
       Text("Visit W3Schools.com!")
    }

Upvotes: 0

Related Questions