9 lines
278 B
JavaScript
9 lines
278 B
JavaScript
|
// Invalid because it's a common misunderstanding.
|
||
|
// We *could* make it valid but the runtime error could be confusing.
|
||
|
function createComponent() {
|
||
|
return function ComponentWithHookInsideCallback() {
|
||
|
(() => {
|
||
|
useHookInsideCallback();
|
||
|
}) |> useEffect(%);
|
||
|
};
|
||
|
}
|