Skip to content

Add ...children rest parameter to unstable_createElement #2761

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/react-native-web/src/exports/createElement/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import createDOMProps from '../../modules/createDOMProps';
import React from 'react';
import { LocaleProvider } from '../../modules/useLocale';

const createElement = (component, props, options) => {
const createElement = (component, props, options, ...children) => {
// Use equivalent platform elements where possible.
let accessibilityComponent;
if (component && component.constructor === String) {
Expand All @@ -24,7 +24,7 @@ const createElement = (component, props, options) => {
const Component = accessibilityComponent || component;
const domProps = createDOMProps(Component, props, options);

const element = React.createElement(Component, domProps);
const element = React.createElement(Component, domProps, ...children);

// Update locale context if element's writing direction prop changes
const elementWithLocaleProvider = domProps.dir ? (
Expand Down