pub const ping: AttributeDescription;
Expand description
ยงUsage in rsx
let ping = "value";
rsx! {
// Attributes need to be under the element they modify
a {
// Attributes are followed by a colon and then the value of the attribute
ping: "value"
}
a {
// Or you can use the shorthand syntax if you have a variable in scope that has the same name as the attribute
ping,
}
};