mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Introduced new documentation files for state management and testing guidelines to enhance developer understanding and best practices. - 📚 **Docs**: Added state management guidelines with local and global state recommendations - 📚 **Docs**: Created testing guidelines including unit testing requirements and best practices - 📚 **Docs**: Updated project structure documentation for clarity
289 B
289 B
State Management
Local State
- Use Signals for component-level state
- Keep state close to where it's used
- Document state management decisions
Global State (NgRx)
- Use for complex application state
- Follow feature-based store organization
- Implement proper error handling