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 4 functions

Entity Profile

Dependency Diagram

graph LR
  471a7eee_c6d7_f4f0_d6c3_dbd08e83fd12["index.js"]
  ac587885_e294_a1e9_b13f_5e7b920fdb42["react"]
  471a7eee_c6d7_f4f0_d6c3_dbd08e83fd12 --> ac587885_e294_a1e9_b13f_5e7b920fdb42
  30d76895_4832_9ca3_9e81_e0cdf028c09c["index.js"]
  30d76895_4832_9ca3_9e81_e0cdf028c09c --> 471a7eee_c6d7_f4f0_d6c3_dbd08e83fd12
  style 471a7eee_c6d7_f4f0_d6c3_dbd08e83fd12 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 {StrictMode} from 'react';

export default function PartiallyStrictApp(): React.Node {
  return (
    <>
      <Child />
      <StrictMode>
        <StrictChild />
      </StrictMode>
    </>
  );
}

function Child() {
  return <Grandchild />;
}

function StrictChild() {
  return <Grandchild />;
}

function Grandchild() {
  return null;
}

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 4 function(s): Child, Grandchild, PartiallyStrictApp, StrictChild.
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/PartiallyStrictApp/index.js (domain: BabelCompiler, subdomain: Validation, directory: packages/react-devtools-shell/src/app/PartiallyStrictApp).

Analyze Your Own Codebase

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

Try Supermodel Free