You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
If you designate a view as async, then the it will not render. No errors are printed to console(Ctrl+Shift+I). You can momentarily see "View is Rendering" before it disappears.
Example of non working code:
return async function View() {
return <p>Hello!</p>;
}
Actual Behavior:
No view is rendered when the function is designated as async.
Expected Behavior:
The view would render and allow for asynchronous async / await patterns in views.
The text was updated successfully, but these errors were encountered:
Title:
Support for async view functions.
Description:
If you designate a view as
async
, then the it will not render. No errors are printed to console(Ctrl+Shift+I). You can momentarily see "View is Rendering" before it disappears.Example of non working code:
Actual Behavior:
No view is rendered when the function is designated as
async
.Expected Behavior:
The view would render and allow for asynchronous
async
/await
patterns in views.The text was updated successfully, but these errors were encountered: