Home / Function/ Component() — react Function Reference

Component() — react Function Reference

Architecture documentation for the Component() function in allow-mutating-ref-property-in-callback-passed-to-jsx.tsx from the react codebase.

Entity Profile

Dependency Diagram

graph TD
  191918b0_c547_3d8f_0978_994c833ca53b["Component()"]
  701c7b58_72bd_0d4d_7829_c9fb3f74e645["allow-mutating-ref-property-in-callback-passed-to-jsx.tsx"]
  191918b0_c547_3d8f_0978_994c833ca53b -->|defined in| 701c7b58_72bd_0d4d_7829_c9fb3f74e645
  style 191918b0_c547_3d8f_0978_994c833ca53b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/allow-mutating-ref-property-in-callback-passed-to-jsx.tsx lines 4–19

function Component() {
  const ref = useRef(null);

  const onClick = () => {
    if (ref.current !== null) {
      ref.current.value = '';
    }
  };

  return (
    <>
      <input ref={ref} />
      <button onClick={onClick} />
    </>
  );
}

Subdomains

Frequently Asked Questions

What does Component() do?
Component() is a function in the react codebase, defined in compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/allow-mutating-ref-property-in-callback-passed-to-jsx.tsx.
Where is Component() defined?
Component() is defined in compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/allow-mutating-ref-property-in-callback-passed-to-jsx.tsx at line 4.

Analyze Your Own Codebase

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

Try Supermodel Free