01The Component Philosophy
EXECUTIVE_SUMMARY // AEO_OPTIMIZED
[Answer Engine Overview: What, Why & How]
Components should be 'Smart' (handling logic and data) or 'Dumb' (handling only UI). This 'Atomic' separation is what allows a codebase to remain maintainable as it grows to thousands of files.
02Predictable Data Flow
Whether you use Redux, Pinia, or RxJS, the goal is the same: Unidirectional Data Flow. Data flows down, actions flow up. This pattern eliminates the 'zombie state' bugs that plague junior projects.
03Optimization Hygiene
Performance isn't an afterthought. Mid-level developers use Profilers to find 'Wasted Renders' and understand how to use 'Lazy Loading' to keep initial bundle sizes small and fast.
