jsx-string-attribute-non-ascii.js — react Source File
Architecture documentation for jsx-string-attribute-non-ascii.js, a javascript file in the react codebase.
Entity Profile
Relationship Graph
Source Code
function Component() {
return (
<Post
author="potetotes"
text="in addition to understanding JavaScript semantics and the rules of React, the compiler team also understands தமிழ், 中文, 日本語, 한국어 and i think that’s pretty cool"
/>
);
}
function Post({author, text}) {
return (
<div>
<h1>{author}</h1>
<span>{text}</span>
</div>
);
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{}],
};
Domain
Subdomains
Functions
Source
Frequently Asked Questions
What does jsx-string-attribute-non-ascii.js do?
jsx-string-attribute-non-ascii.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 jsx-string-attribute-non-ascii.js?
jsx-string-attribute-non-ascii.js defines 2 function(s): Component, Post.
Where is jsx-string-attribute-non-ascii.js in the architecture?
jsx-string-attribute-non-ascii.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/jsx-string-attribute-non-ascii.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