Home / File/ error.invalid-exhaustive-deps-disallow-unused-stable-types.js — react Source File

error.invalid-exhaustive-deps-disallow-unused-stable-types.js — react Source File

Architecture documentation for error.invalid-exhaustive-deps-disallow-unused-stable-types.js, a javascript file in the react codebase. 2 imports, 0 dependents.

File javascript TestingUtilities Fixtures 2 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  49c3fc19_9fa3_65aa_7b0a_763fee3b6493["error.invalid-exhaustive-deps-disallow-unused-stable-types.js"]
  ac587885_e294_a1e9_b13f_5e7b920fdb42["react"]
  49c3fc19_9fa3_65aa_7b0a_763fee3b6493 --> ac587885_e294_a1e9_b13f_5e7b920fdb42
  006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"]
  49c3fc19_9fa3_65aa_7b0a_763fee3b6493 --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05
  style 49c3fc19_9fa3_65aa_7b0a_763fee3b6493 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

// @validateExhaustiveMemoizationDependencies

import {useState} from 'react';
import {Stringify} from 'shared-runtime';

function Component() {
  const [state, setState] = useState(0);
  const x = useMemo(() => {
    return [state];
    // error: `setState` is a stable type, but not actually referenced
  }, [state, setState]);

  return 'oops';
}

Subdomains

Functions

Dependencies

  • react
  • shared-runtime

Frequently Asked Questions

What does error.invalid-exhaustive-deps-disallow-unused-stable-types.js do?
error.invalid-exhaustive-deps-disallow-unused-stable-types.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 error.invalid-exhaustive-deps-disallow-unused-stable-types.js?
error.invalid-exhaustive-deps-disallow-unused-stable-types.js defines 1 function(s): Component.
What does error.invalid-exhaustive-deps-disallow-unused-stable-types.js depend on?
error.invalid-exhaustive-deps-disallow-unused-stable-types.js imports 2 module(s): react, shared-runtime.
Where is error.invalid-exhaustive-deps-disallow-unused-stable-types.js in the architecture?
error.invalid-exhaustive-deps-disallow-unused-stable-types.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/exhaustive-deps/error.invalid-exhaustive-deps-disallow-unused-stable-types.js (domain: TestingUtilities, subdomain: Fixtures, directory: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/exhaustive-deps).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free