Files

9 lines
147 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
function Component(props) {
const items = bar();
mutate(items.a, props.a);
const count = foo(items.length + 1);
return {items, count};
}