@@ -613,7 +613,7 @@ trait UniversalComponents {
613
613
implicit def dataTOAny (in : D ): js.Any = in.asInstanceOf [js.Any ]
614
614
val props = FunctionObjectMacro ()
615
615
extraProps.foreach(v => { MergeJSObjects (props, v) })
616
- CreateElementJS [VirtualizedListComponent .type ](
616
+ CreateElementJSNoInline [VirtualizedListComponent .type ](
617
617
VirtualizedListComponent ,
618
618
props.asInstanceOf [VirtualizedListProps [_, _]],
619
619
key,
@@ -657,7 +657,7 @@ trait UniversalComponents {
657
657
: ReactElement { type Instance = FlatListComponent .type } = {
658
658
val props = FunctionObjectMacro ()
659
659
extraProps.foreach(v => { MergeJSObjects (props, v) })
660
- CreateElementJS [FlatListComponent .type ](
660
+ CreateElementJSNoInline [FlatListComponent .type ](
661
661
FlatListComponent ,
662
662
props.asInstanceOf [FlatListProps [I ]],
663
663
key,
@@ -703,7 +703,7 @@ trait UniversalComponents {
703
703
: ReactElement { type Instance = SectionListComponent .type } = {
704
704
val props = FunctionObjectMacro ()
705
705
extraProps.foreach(v => { MergeJSObjects (props, v) })
706
- CreateElementJS [SectionListComponent .type ](
706
+ CreateElementJSNoInline [SectionListComponent .type ](
707
707
SectionListComponent ,
708
708
props.asInstanceOf [SectionListProps [I ]],
709
709
key,
0 commit comments