Skip to content
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