Files
spring-boot-demo/src/main/kotlin/com/example/demo/providers/html/Html.kt
2024-10-02 12:18:55 +07:00

12 lines
290 B
Kotlin

package com.example.demo.providers.html
class Html: Tag("html")
fun html(init: Html.() -> Unit): Html {
val tag = Html()
tag.init()
return tag
}
fun Html.table(init : Table.() -> Unit) = doInit(Table(), init)
fun Html.center(init : Center.() -> Unit) = doInit(Center(), init)