Home / File/ index.js — react Source File

index.js — react Source File

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

File javascript BabelCompiler Optimization 6 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  b5c3d1b0_d883_f450_c611_6b19471cfed7["index.js"]
  43315ad6_972b_89f2_a26c_ae2c6075675a["FixtureSet.js"]
  b5c3d1b0_d883_f450_c611_6b19471cfed7 --> 43315ad6_972b_89f2_a26c_ae2c6075675a
  f3e4d030_5f7e_b1af_0ae5_fcdf80961e8c["FixtureSet"]
  b5c3d1b0_d883_f450_c611_6b19471cfed7 --> f3e4d030_5f7e_b1af_0ae5_fcdf80961e8c
  14dde3c9_48ef_6e34_3667_978d06aff15d["TestCase.js"]
  b5c3d1b0_d883_f450_c611_6b19471cfed7 --> 14dde3c9_48ef_6e34_3667_978d06aff15d
  e1e356f5_b085_dad5_a81f_4b4844381311["TestCase"]
  b5c3d1b0_d883_f450_c611_6b19471cfed7 --> e1e356f5_b085_dad5_a81f_4b4844381311
  550cdcf0_f489_fb75_cfef_d5d1948eb629["PasswordTestCase.js"]
  b5c3d1b0_d883_f450_c611_6b19471cfed7 --> 550cdcf0_f489_fb75_cfef_d5d1948eb629
  4d14f086_a8c4_54e2_3fab_104afe6c8837["PasswordTestCase"]
  b5c3d1b0_d883_f450_c611_6b19471cfed7 --> 4d14f086_a8c4_54e2_3fab_104afe6c8837
  style b5c3d1b0_d883_f450_c611_6b19471cfed7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import FixtureSet from '../../FixtureSet';
import TestCase from '../../TestCase';
import PasswordTestCase from './PasswordTestCase';

const React = window.React;

function NumberInputs() {
  return (
    <FixtureSet title="Password inputs">
      <TestCase
        title="The show password icon"
        description={`
          Some browsers have an unmask password icon that React accidentally
          prevents the display of.
        `}
        affectedBrowsers="IE Edge, IE 11">
        <TestCase.Steps>
          <li>Type any string (not an actual password)</li>
        </TestCase.Steps>

        <TestCase.ExpectedResult>
          The field should include the "unmasking password" icon.
        </TestCase.ExpectedResult>

        <PasswordTestCase />
      </TestCase>
    </FixtureSet>
  );
}

export default NumberInputs;

Domain

Subdomains

Functions

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, Optimization subdomain.
What functions are defined in index.js?
index.js defines 1 function(s): NumberInputs.
What does index.js depend on?
index.js imports 6 module(s): FixtureSet, FixtureSet.js, PasswordTestCase, PasswordTestCase.js, TestCase, TestCase.js.
Where is index.js in the architecture?
index.js is located at fixtures/dom/src/components/fixtures/password-inputs/index.js (domain: BabelCompiler, subdomain: Optimization, directory: fixtures/dom/src/components/fixtures/password-inputs).

Analyze Your Own Codebase

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

Try Supermodel Free