ListExportTest.jsx — astro Source File
Architecture documentation for ListExportTest.jsx, a javascript file in the astro codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 8f49120b_9843_684c_0459_414223523e23["ListExportTest.jsx"] d9988dd0_c044_f9d2_85cd_a31a0a2bdf80["react"] 8f49120b_9843_684c_0459_414223523e23 --> d9988dd0_c044_f9d2_85cd_a31a0a2bdf80 style 8f49120b_9843_684c_0459_414223523e23 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { useState } from "react"
export { ListExportTestComponent } from './ListExportTestComponent'
const ListExport = () => {
const [example] = useState('Example')
return <h2 id="default_list_export">{example}</h2>
}
export {ListExport}
const OriginListExport = () => {
const [example] = useState('Example')
return <h2 id="renamed_list_export">{example}</h2>
}
export {
OriginListExport as RenamedListExport
}
const ListAsDefaultExport = () => {
const [example] = useState('Example')
return <h2 id="list_as_default_export">{example}</h2>
}
export {
ListAsDefaultExport as default
}
Domain
Subdomains
Dependencies
- react
Source
Frequently Asked Questions
What does ListExportTest.jsx do?
ListExportTest.jsx is a source file in the astro codebase, written in javascript. It belongs to the IntegrationAdapters domain, ReactIntegration subdomain.
What functions are defined in ListExportTest.jsx?
ListExportTest.jsx defines 3 function(s): ListAsDefaultExport, ListExport, OriginListExport.
What does ListExportTest.jsx depend on?
ListExportTest.jsx imports 1 module(s): react.
Where is ListExportTest.jsx in the architecture?
ListExportTest.jsx is located at packages/astro/test/fixtures/react-jsx-export/src/components/ListExportTest.jsx (domain: IntegrationAdapters, subdomain: ReactIntegration, directory: packages/astro/test/fixtures/react-jsx-export/src/components).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free