allow-global-reassignment-in-effect-indirect.js — react Source File
Architecture documentation for allow-global-reassignment-in-effect-indirect.js, a javascript file in the react codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 1e1ae561_57b9_87ee_223b_3e648d78f80e["allow-global-reassignment-in-effect-indirect.js"] ac587885_e294_a1e9_b13f_5e7b920fdb42["react"] 1e1ae561_57b9_87ee_223b_3e648d78f80e --> ac587885_e294_a1e9_b13f_5e7b920fdb42 style 1e1ae561_57b9_87ee_223b_3e648d78f80e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {useEffect, useState} from 'react';
let someGlobal = false;
function Component() {
const [state, setState] = useState(someGlobal);
const setGlobal = () => {
someGlobal = true;
};
useEffect(() => {
setGlobal();
}, []);
useEffect(() => {
setState(someGlobal);
}, [someGlobal]);
return <div>{String(state)}</div>;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{}],
};
Domain
Subdomains
Functions
Dependencies
- react
Source
Frequently Asked Questions
What does allow-global-reassignment-in-effect-indirect.js do?
allow-global-reassignment-in-effect-indirect.js is a source file in the react codebase, written in javascript. It belongs to the TestingUtilities domain, Fixtures subdomain.
What functions are defined in allow-global-reassignment-in-effect-indirect.js?
allow-global-reassignment-in-effect-indirect.js defines 1 function(s): Component.
What does allow-global-reassignment-in-effect-indirect.js depend on?
allow-global-reassignment-in-effect-indirect.js imports 1 module(s): react.
Where is allow-global-reassignment-in-effect-indirect.js in the architecture?
allow-global-reassignment-in-effect-indirect.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/allow-global-reassignment-in-effect-indirect.js (domain: TestingUtilities, subdomain: Fixtures, directory: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free