We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue is where I document specific aspects of Smithy I would like to improve. If you have questions, please open a new issue!
mount
fn mount<Node: 'static, Event, Canvas>( mut app: Box<dyn Component<Node = Node, Event = Event, Canvas = Canvas>>, mut el: Canvas, ) where Event: CanRegisterWith<Canvas> + 'static, Canvas: CanPaint<Node> + 'static, {
(though I think we can improve upon this, as there should only be two free type variables.)
CanRegisterWith<HtmlElement>
smd!(...)
rsx![( div { attribute: "value" } { on_click: |_| count += 1 } ["current count ", count] )]
smd!
thread_local!
ref
NOTE: if you have questions, please file new issues
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This issue is where I document specific aspects of Smithy I would like to improve. If you have questions, please open a new issue!
Make Smithy generic
mount
can have the signature(though I think we can improve upon this, as there should only be two free type variables.)
CanRegisterWith<HtmlElement>
for an enum of events, where which events are included is set via crate features.Alternative lisp-like syntax
smd!(...)
) are decoupledGeneral areas of improvement
Specific improvements
smd!
thread_local!
, but create instances inmount
smd!
parserref
section if there are noref
's in ansmd!
nodeNOTE: if you have questions, please file new issues
The text was updated successfully, but these errors were encountered: