Files

10 lines
150 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
import {makeArray as useArray} from 'other';
function Component(props) {
let data;
if (props.cond) {
data = useArray();
}
return data;
}