Home / File/ index.js — react Source File

index.js — react Source File

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

File javascript BabelCompiler Entrypoint 9 imports 1 classes

Entity Profile

Dependency Diagram

graph LR
  f91798bc_7834_6a3e_b26a_92e61ba9eb26["index.js"]
  bc8ae172_cc20_3692_943c_bbdb1ad34855["Fixture.js"]
  f91798bc_7834_6a3e_b26a_92e61ba9eb26 --> bc8ae172_cc20_3692_943c_bbdb1ad34855
  2851624d_a736_f3f6_2132_5a20630983fe["Fixture"]
  f91798bc_7834_6a3e_b26a_92e61ba9eb26 --> 2851624d_a736_f3f6_2132_5a20630983fe
  a3aeab4c_4f93_b8d8_01c2_7a351a28a3fb["Fixture"]
  f91798bc_7834_6a3e_b26a_92e61ba9eb26 --> a3aeab4c_4f93_b8d8_01c2_7a351a28a3fb
  43315ad6_972b_89f2_a26c_ae2c6075675a["FixtureSet.js"]
  f91798bc_7834_6a3e_b26a_92e61ba9eb26 --> 43315ad6_972b_89f2_a26c_ae2c6075675a
  f3e4d030_5f7e_b1af_0ae5_fcdf80961e8c["FixtureSet"]
  f91798bc_7834_6a3e_b26a_92e61ba9eb26 --> f3e4d030_5f7e_b1af_0ae5_fcdf80961e8c
  14dde3c9_48ef_6e34_3667_978d06aff15d["TestCase.js"]
  f91798bc_7834_6a3e_b26a_92e61ba9eb26 --> 14dde3c9_48ef_6e34_3667_978d06aff15d
  e1e356f5_b085_dad5_a81f_4b4844381311["TestCase"]
  f91798bc_7834_6a3e_b26a_92e61ba9eb26 --> e1e356f5_b085_dad5_a81f_4b4844381311
  595c8d7b_f848_6c78_07aa_cf8e45db9dd6["switch-date-test-case.js"]
  f91798bc_7834_6a3e_b26a_92e61ba9eb26 --> 595c8d7b_f848_6c78_07aa_cf8e45db9dd6
  236c3101_dd6d_7152_7afd_f0ae0f1d05a9["SwitchDateTestCase"]
  f91798bc_7834_6a3e_b26a_92e61ba9eb26 --> 236c3101_dd6d_7152_7afd_f0ae0f1d05a9
  style f91798bc_7834_6a3e_b26a_92e61ba9eb26 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import Fixture from '../../Fixture';
import FixtureSet from '../../FixtureSet';
import TestCase from '../../TestCase';
import SwitchDateTestCase from './switch-date-test-case';

const React = window.React;

class DateInputFixtures extends React.Component {
  render() {
    return (
      <FixtureSet title="Dates">
        <TestCase title="Switching between date and datetime-local">
          <TestCase.Steps>
            <li>Type a date into the date picker</li>
            <li>Toggle "Switch type"</li>
          </TestCase.Steps>

          <TestCase.ExpectedResult>
            The month, day, and year values should correctly transfer. The
            hours/minutes/seconds should not be discarded.
          </TestCase.ExpectedResult>

          <Fixture>
            <SwitchDateTestCase />
          </Fixture>
        </TestCase>
      </FixtureSet>
    );
  }
}

export default DateInputFixtures;

Domain

Subdomains

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, Entrypoint subdomain.
What does index.js depend on?
index.js imports 9 module(s): Fixture, Fixture, Fixture.js, FixtureSet, FixtureSet.js, SwitchDateTestCase, TestCase, TestCase.js, and 1 more.
Where is index.js in the architecture?
index.js is located at fixtures/dom/src/components/fixtures/date-inputs/index.js (domain: BabelCompiler, subdomain: Entrypoint, directory: fixtures/dom/src/components/fixtures/date-inputs).

Analyze Your Own Codebase

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

Try Supermodel Free