Slide 49
Slide 49 text
fun DIV.card(title: String, subtitle: String, text: String) {
div("mdc-card") {
section("mdc-card__primary") {
h1("mdc-card__title") {
+title
}
h2("mdc-card__subtitle") {
+subtitle
}
}
section("mdc-card__supporting-text") {
+text
}
}
}
@jossiwolf