-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Main App cannot be autoprops #9
Comments
Thank you for all of the reports. To be honest, I don't use |
Its all good if you still accept PRs and release new versions, otherwise consider transferring ownership |
I won't mind for now
If anyone is interested, why not |
That would be me, @cecton, or, if possible, yewstack |
I don't think it will be necessary. I will make a PR now to port the feature to Yew. If it succeeds, you will be able to archive the repository |
This one is already fixed in the autoprops port on Yew |
Fixes #8 Fixes #7 Fixes #9 Fixes #3 Related to yewstack/yew#3505
For consistency reasons, I tried to write following:
This comes up with following error on a CSR render:
This is probably due to fact that props struct generates for
App
even if there are no props (as mentioned in #7).Default
? (Also, consider manualimpl Default
where all types areDefault
- this is possible by listingwhere type1: Default, type2: Default
, no matter how simple or complex the type is - you can even type outwhere i32: Default
and it will still work)The text was updated successfully, but these errors were encountered: