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
This commit particularly solves elements names that include dashes: custom
elements, such as `custom-element-name`.
These can be written in JSX like so:
```jsx
<custom-element-name />
```
…which is fine.
But to support passing them in, we were previously rewriting such code to a
member id, to take a key from an object, like so:
```jsx
<_components.custom-element-name>
```
…which crashed.
This commit solves that by taking the component from the object in a temporary
variable, and using that valid variable name as a single component name.
```js
const _component0 = _components['custom-element-name']
<_component0 />
```
ClosesGH-2100.
ClosesGH-2101.
Co-authored-by: Titus Wormer <tituswormer@gmail.com>
Reviewed-by: Titus Wormer <tituswormer@gmail.com>
0 commit comments