Files
ISA-Frontend/docs/guidelines/state-management.md
Lorenz Hilpert 3c110efdfa 📚 Add state management and testing guidelines documentation
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
2025-03-31 11:52:17 +02:00

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