Trotyl Yu
Trotyl Yu
## Guide https://reactjs.org/docs/code-splitting.html ## API https://reactjs.org/docs/react-api.html#reactlazy https://reactjs.org/docs/react-api.html#reactsuspense
## Guide https://reactjs.org/docs/error-boundaries.html ## API https://reactjs.org/docs/react-component.html#static-getderivedstatefromerror https://reactjs.org/docs/react-component.html#componentdidcatch
## Guide https://reactjs.org/docs/context.html ## API https://reactjs.org/docs/context.html#reactcreatecontext https://reactjs.org/docs/context.html#contextprovider https://reactjs.org/docs/context.html#classcontexttype https://reactjs.org/docs/context.html#contextconsumer
## Guide https://reactjs.org/docs/fragments.html ## API https://reactjs.org/docs/react-api.html#reactfragment
## Current When not specifying `key`, all children are tracked by non-keyed way (index of type). ## Expected Should be keyed by default, element without key should always be consider...
## Current Angular component always contains a host element, and `Renderable` always render content in child position. ## Expected Provide an option to render content in sibling position: ```typescript import...
## Current `children` always be an `Array` of renderable nodes. ## Expected + `undefined` when having no nodes; + `RNode` when having single node; + `RNode[]` when having more than...
## Current One can only mount elements in existing Angular component. ## Expected Support global bootstrap without any Angular code, like: ```typescript import { createElement, render } from 'ng-renderable' import...
## Expected When `JSXAttributeName` contains non-alphabetic character, like: ```typescript () => ``` Should be translated to HTML Attribute rather than DOM Property, like: ```html ```
## Expected ```typescript () => ``` Should be equivalent to: ```html ``` *Note: `%` is not valid in `JSXAttributeName`.*