React Patterns
Best practices for React development: functional components, hooks, state management, performance, and accessibility.
Component Rules
- Always use functional components — never class components for new code
- One component per file — name the file the same as the component (PascalCase)
- Export components as named exports — default exports only for pages/routes
- Colocate related files — keep
Component.tsx,Component.test.tsx, and `Component.modul
[Description truncada. Veja o README completo no GitHub.]