9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
|
function Component(props) {
|
||
|
const mutateProps = () => {
|
||
|
props.value = true;
|
||
|
};
|
||
|
const indirectMutateProps = () => {
|
||
|
mutateProps();
|
||
|
};
|
||
|
(() => indirectMutateProps()) |> useEffect(%, []);
|
||
|
}
|