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