Home / File/ index.js — react Source File

index.js — react Source File

Architecture documentation for index.js, a javascript file in the react codebase. 1 imports, 1 dependents.

File javascript BabelCompiler Validation 1 imports 1 dependents 14 functions

Entity Profile

Dependency Diagram

graph LR
  a48cc242_4b50_fd09_0e8c_65edf69b7004["index.js"]
  ac587885_e294_a1e9_b13f_5e7b920fdb42["react"]
  a48cc242_4b50_fd09_0e8c_65edf69b7004 --> ac587885_e294_a1e9_b13f_5e7b920fdb42
  30d76895_4832_9ca3_9e81_e0cdf028c09c["index.js"]
  30d76895_4832_9ca3_9e81_e0cdf028c09c --> a48cc242_4b50_fd09_0e8c_65edf69b7004
  style a48cc242_4b50_fd09_0e8c_65edf69b7004 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

/**
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 * @flow
 */

import * as React from 'react';
import {
  Fragment,
  Suspense,
  unstable_SuspenseList as SuspenseList,
  useReducer,
  useState,
} from 'react';

function SuspenseTree(): React.Node {
  return (
    <Fragment>
      <h1>Suspense</h1>
      <h4>Primary to Fallback Cycle</h4>
      <PrimaryFallbackTest initialSuspend={false} />
      <h4>Fallback to Primary Cycle</h4>
      <PrimaryFallbackTest initialSuspend={true} />
      <NestedSuspenseTest />
      <SuspenseListTest />
      <EmptySuspense />
      <SuspenseTreeOperations />
    </Fragment>
  );
}

function IgnoreMePassthrough({children}: {children: React$Node}) {
  return <span>{children}</span>;
}

const suspenseTreeOperationsChildren = {
  a: (
    <Suspense key="a" name="a">
      <p>A</p>
    </Suspense>
  ),
  b: (
    <div key="b">
      <Suspense name="b">B</Suspense>
    </div>
  ),
  c: (
    <p key="c">
      <Suspense key="c" name="c">
        C
      </Suspense>
    </p>
  ),
  d: (
    <Suspense key="d" name="d">
      <div>D</div>
    </Suspense>
// ... (311 more lines)

Domain

Subdomains

Dependencies

  • react

Frequently Asked Questions

What does index.js do?
index.js is a source file in the react codebase, written in javascript. It belongs to the BabelCompiler domain, Validation subdomain.
What functions are defined in index.js?
index.js defines 14 function(s): Fallback1, Fallback2, IgnoreMePassthrough, LoadLater, NestedSuspenseTest, Never, Parent, Primary1, Primary2, SuspenseListTest, and 4 more.
What does index.js depend on?
index.js imports 1 module(s): react.
What files import index.js?
index.js is imported by 1 file(s): index.js.
Where is index.js in the architecture?
index.js is located at packages/react-devtools-shell/src/app/SuspenseTree/index.js (domain: BabelCompiler, subdomain: Validation, directory: packages/react-devtools-shell/src/app/SuspenseTree).

Analyze Your Own Codebase

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

Try Supermodel Free