Analyze and optimize a React component for better performance.
# Optimize React Component Performance Analyze and optimize a React component for better performance. ## Arguments - `$ARGUMENTS` - Component name or file path to optimize ## Instructions Analyze and optimize the specified React component: 1. **Performance Analysis** - Read the component file specified in `$ARGUMENTS` - Identify unnecessary re-renders - Find expensive computations - Check for missing memoization - Identify bundle size concerns 2. **Common Issues to Check** - Inline object/function creation in JSX - Missing React.memo on pure components - Missin...