App.jsx — vite Source File
Architecture documentation for App.jsx, a javascript file in the vite codebase. 5 imports, 1 dependents.
Entity Profile
Dependency Diagram
graph LR 04d0a63e_2077_3617_a3ad_d7c79790e33e["App.jsx"] 03875770_db54_6b36_adb0_c4abf2f607f2["./assets/react.svg"] 04d0a63e_2077_3617_a3ad_d7c79790e33e --> 03875770_db54_6b36_adb0_c4abf2f607f2 b0f134e7_497e_e93f_4861_340885c9277d["./assets/vite.svg"] 04d0a63e_2077_3617_a3ad_d7c79790e33e --> b0f134e7_497e_e93f_4861_340885c9277d db7bd00b_5f7f_6ed5_dd99_c09354858ade["./assets/hero.png"] 04d0a63e_2077_3617_a3ad_d7c79790e33e --> db7bd00b_5f7f_6ed5_dd99_c09354858ade 77114374_54f9_3809_1441_eec9fb69c188["App.css"] 04d0a63e_2077_3617_a3ad_d7c79790e33e --> 77114374_54f9_3809_1441_eec9fb69c188 16c08f9f_8e90_777b_a0bf_1b3f40a90ecd["react"] 04d0a63e_2077_3617_a3ad_d7c79790e33e --> 16c08f9f_8e90_777b_a0bf_1b3f40a90ecd 7b3b7bf1_dfb3_5abb_ac83_1db1e117e737["main.jsx"] 7b3b7bf1_dfb3_5abb_ac83_1db1e117e737 --> 04d0a63e_2077_3617_a3ad_d7c79790e33e style 04d0a63e_2077_3617_a3ad_d7c79790e33e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { useState } from 'react'
import reactLogo from './assets/react.svg'
import viteLogo from './assets/vite.svg'
import heroImg from './assets/hero.png'
import './App.css'
function App() {
const [count, setCount] = useState(0)
return (
<>
<section id="center">
<div className="hero">
<img src={heroImg} className="base" width="170" height="179" alt="" />
<img src={reactLogo} className="framework" alt="React logo" />
<img src={viteLogo} className="vite" alt="Vite logo" />
</div>
<div>
<h1>Get started</h1>
<p>
Edit <code>src/App.jsx</code> and save to test <code>HMR</code>
</p>
</div>
<button
className="counter"
onClick={() => setCount((count) => count + 1)}
>
Count is {count}
</button>
</section>
<div className="ticks"></div>
<section id="next-steps">
<div id="docs">
<svg className="icon" role="presentation" aria-hidden="true">
<use href="/icons.svg#documentation-icon"></use>
</svg>
<h2>Documentation</h2>
<p>Your questions, answered</p>
<ul>
<li>
<a href="https://vite.dev/" target="_blank">
<img className="logo" src={viteLogo} alt="" />
Explore Vite
</a>
</li>
<li>
<a href="https://react.dev/" target="_blank">
<img className="button-icon" src={reactLogo} alt="" />
Learn more
</a>
</li>
</ul>
</div>
<div id="social">
<svg className="icon" role="presentation" aria-hidden="true">
<use href="/icons.svg#social-icon"></use>
</svg>
<h2>Connect with us</h2>
// ... (62 more lines)
Domain
Subdomains
Functions
Dependencies
- ./assets/hero.png
- ./assets/react.svg
- ./assets/vite.svg
- App.css
- react
Imported By
Source
Frequently Asked Questions
What does App.jsx do?
App.jsx is a source file in the vite codebase, written in javascript. It belongs to the ProjectScaffolder domain, TemplateEngine subdomain.
What functions are defined in App.jsx?
App.jsx defines 1 function(s): App.
What does App.jsx depend on?
App.jsx imports 5 module(s): ./assets/hero.png, ./assets/react.svg, ./assets/vite.svg, App.css, react.
What files import App.jsx?
App.jsx is imported by 1 file(s): main.jsx.
Where is App.jsx in the architecture?
App.jsx is located at packages/create-vite/template-react/src/App.jsx (domain: ProjectScaffolder, subdomain: TemplateEngine, directory: packages/create-vite/template-react/src).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free