Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/optional-call-with-optional-property-load.js
2026-08-27 21:09:14 +00:00

4 lines
91 B
JavaScript

function Component(props) {
return props?.items?.map?.(render)?.filter(Boolean) ?? [];
}