Home / File/ createElement-freeze.js — react Source File

createElement-freeze.js — react Source File

Architecture documentation for createElement-freeze.js, a javascript file in the react codebase. 2 imports, 0 dependents.

File javascript TestingUtilities Fixtures 2 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  a558fc20_319b_c1b2_e1ec_01a14e303515["createElement-freeze.js"]
  ac587885_e294_a1e9_b13f_5e7b920fdb42["react"]
  a558fc20_319b_c1b2_e1ec_01a14e303515 --> ac587885_e294_a1e9_b13f_5e7b920fdb42
  006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"]
  a558fc20_319b_c1b2_e1ec_01a14e303515 --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05
  style a558fc20_319b_c1b2_e1ec_01a14e303515 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import React from 'react';
import {shallowCopy} from 'shared-runtime';

function Component(props) {
  const childProps = {style: {width: props.width}};
  const element = React.createElement('div', childProps, ['hello world']);
  shallowCopy(childProps); // function that in theory could mutate, we assume not bc createElement freezes
  return element;
}

export const FIXTURE_ENTRYPOINT = {
  fn: Component,
  params: [{}],
};

Subdomains

Functions

Dependencies

  • react
  • shared-runtime

Frequently Asked Questions

What does createElement-freeze.js do?
createElement-freeze.js is a source file in the react codebase, written in javascript. It belongs to the TestingUtilities domain, Fixtures subdomain.
What functions are defined in createElement-freeze.js?
createElement-freeze.js defines 1 function(s): Component.
What does createElement-freeze.js depend on?
createElement-freeze.js imports 2 module(s): react, shared-runtime.
Where is createElement-freeze.js in the architecture?
createElement-freeze.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/createElement-freeze.js (domain: TestingUtilities, subdomain: Fixtures, directory: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler).

Analyze Your Own Codebase

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

Try Supermodel Free