Files
WRNexusJS/.publish/ui/components/Form.wrn
T
2026-07-19 15:51:27 +05:30

13 lines
255 B
Plaintext

component Form {
props {
action = ""
method = "post"
name = ""
loading = false
class = ""
}
view {
<form action="{action}" method="{method}" name="{name}" aria-busy="{loading}" class="wire-form {class}"><slot /></form>
}
}