React Performance
databayt/hogwartsEducational automation streamlining operations for students, educators, and school leaders.
10 stars
8 forks
TypeScript
73 views
SKILL.md
name: React Performance description: Component optimization version: 1.0.0 category: performance
React Performance Skill
Memoization
- React.memo for components
- useMemo for calculations
- useCallback for handlers
Code Splitting
- React.lazy for heavy components
- Suspense for loading states
Checklist
- Memoized expensive components
- No inline functions
- Lazy loaded when appropriate