nvim-ts-autotag/sample/index.templ

14 lines
140 B
Plaintext

package main
templ hello(name string) {
<div class="">Hello, { name }</div>
}
templ foo(name string) {
<div>
@hello(name)
</div>
}