App() — vite Function Reference
Architecture documentation for the App() function in app.tsx from the vite codebase.
Entity Profile
Dependency Diagram
graph TD 9639f13f_5b58_8161_8537_47e35cf8b40e["App()"] 88fb52b5_9513_4308_12b1_375e160d5115["app.tsx"] 9639f13f_5b58_8161_8537_47e35cf8b40e -->|defined in| 88fb52b5_9513_4308_12b1_375e160d5115 style 9639f13f_5b58_8161_8537_47e35cf8b40e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/create-vite/template-qwik-ts/src/app.tsx lines 8–101
export const App = component$(() => {
const count = useSignal(0)
return (
<>
<section id="center">
<div class="hero">
<img src={heroImg} class="base" width="170" height="179" alt="" />
<img src={qwikLogo} class="framework" alt="Qwik logo" />
<img src={viteLogo} class="vite" alt="Vite logo" />
</div>
<div>
<h1>Get started</h1>
<p>
Edit <code>src/app.tsx</code> and save to test <code>HMR</code>
</p>
</div>
<button class="counter" onClick$={() => count.value++}>
Count is {count.value}
</button>
</section>
<div class="ticks"></div>
<section id="next-steps">
<div id="docs">
<svg class="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 class="logo" src={viteLogo} alt="" />
Explore Vite
</a>
</li>
<li>
<a href="https://qwik.dev/" target="_blank">
<img class="button-icon" src={qwikLogo} alt="" />
Learn more
</a>
</li>
</ul>
</div>
<div id="social">
<svg class="icon" role="presentation" aria-hidden="true">
<use href="/icons.svg#social-icon"></use>
</svg>
<h2>Connect with us</h2>
<p>Join the Vite community</p>
<ul>
<li>
<a href="https://github.com/vitejs/vite" target="_blank">
<svg class="button-icon" role="presentation" aria-hidden="true">
<use href="/icons.svg#github-icon"></use>
</svg>
GitHub
</a>
</li>
<li>
<a href="https://chat.vite.dev/" target="_blank">
<svg class="button-icon" role="presentation" aria-hidden="true">
<use href="/icons.svg#discord-icon"></use>
</svg>
Discord
</a>
</li>
<li>
<a href="https://x.com/vite_js" target="_blank">
<svg class="button-icon" role="presentation" aria-hidden="true">
<use href="/icons.svg#x-icon"></use>
</svg>
X.com
</a>
</li>
<li>
<a href="https://bsky.app/profile/vite.dev" target="_blank">
<svg class="button-icon" role="presentation" aria-hidden="true">
<use href="/icons.svg#bluesky-icon"></use>
Domain
Subdomains
Source
Frequently Asked Questions
What does App() do?
App() is a function in the vite codebase, defined in packages/create-vite/template-qwik-ts/src/app.tsx.
Where is App() defined?
App() is defined in packages/create-vite/template-qwik-ts/src/app.tsx at line 8.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free