Home / File/ Nested.jsx — astro Source File

Nested.jsx — astro Source File

Architecture documentation for Nested.jsx, a javascript file in the astro codebase. 1 imports, 0 dependents.

Entity Profile

Dependency Diagram

graph LR
  b5adcf1a_1f0e_fc20_03fe_ecf4f73cb463["Nested.jsx"]
  d9988dd0_c044_f9d2_85cd_a31a0a2bdf80["react"]
  b5adcf1a_1f0e_fc20_03fe_ecf4f73cb463 --> d9988dd0_c044_f9d2_85cd_a31a0a2bdf80
  style b5adcf1a_1f0e_fc20_03fe_ecf4f73cb463 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { useState } from 'react';

export default function Counter({ children }) {
	const [count, setCount] = useState(0);
	const add = () => setCount((i) => i + 1);
	const subtract = () => setCount((i) => i - 1);

	return (
		<>
			<div className="counter">
				<button onClick={subtract}>-</button>
				<pre>{count}</pre>
				<button onClick={add}>+</button>
			</div>
			<div className="counter-message">{children}</div>
		</>
	);
}

Subdomains

Functions

Dependencies

  • react

Frequently Asked Questions

What does Nested.jsx do?
Nested.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 Nested.jsx?
Nested.jsx defines 1 function(s): Counter.
What does Nested.jsx depend on?
Nested.jsx imports 1 module(s): react.
Where is Nested.jsx in the architecture?
Nested.jsx is located at packages/astro/test/fixtures/static-build-frameworks/src/components/Nested.jsx (domain: IntegrationAdapters, subdomain: ReactIntegration, directory: packages/astro/test/fixtures/static-build-frameworks/src/components).

Analyze Your Own Codebase

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

Try Supermodel Free