mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 14:44:12 +00:00
Fix 782 - inline props should use cx token
This commit is contained in:
parent
ae1a618aa8
commit
07447fd756
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ impl ToTokens for InlinePropsBody {
|
|||
#maybe_async #vis fn #ident #fn_generics (#cx_token: Scope<#scope_lifetime #struct_name #generics>) #output
|
||||
#where_clause
|
||||
{
|
||||
let #struct_name { #(#field_names),* } = &cx.props;
|
||||
let #struct_name { #(#field_names),* } = &#cx_token.props;
|
||||
#block
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue