-
-
Notifications
You must be signed in to change notification settings - Fork 4
syntax
pannous edited this page Sep 19, 2021
·
2 revisions
Wasp syntax is identical for data and code, which is executable data.
It is a general tree format which can express anything:
form{
//comment
div{ class:"form-group"
label{ for:email
"Email address:"
}
input{ type:email id:email}
}
button{ class:['btn' 'btn-info']
'Submit'
}
}