-
Notifications
You must be signed in to change notification settings - Fork 348
Closed
Description
Consider the following component:
module Test = {
type t = {foo: int};
[@react.component]
let make = (~children) => {
let () = Array.iter(c => Js.log(c.foo), children);
<div />;
};
};An a usage:
let el = <Test> {foo: 2} {foo:3} </Test>This fails with
11 | ((Test.createElement ~children:[{ Test.foo = 2 }; { Test.foo = 3 }] ())
^^^^^^^^^^^^^^^^
Error: This expression has type Test.t but an expression was expected of type React.element
The reason is that the PPX compiles the above into:
let el =
React.jsxs(
Test.make,
Test.makeProps(
~children=React.array([|{Test.foo: 2}, {Test.foo: 3}|]),
(),
),
);And React.array expects (correctly) an array of elements as input.
I wonder if the PPX could skip the call to React.array for elements that are produced using custom components (i.e. the upper case ones)? In those cases, the component author has full control, so if they pass an array, we can allow the type inside the array to be anything, really.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels