Build a React widget that converts temperature values between Celsius and Fahrenheit.
Requirements:
- Render two number inputs: one for Celsius and one for Fahrenheit.
- Updating one input should automatically update the other.
- Use the conversion formulas:
- Celsius to Fahrenheit: (C × 9/5) + 32
- Fahrenheit to Celsius: (F − 32) × 5/9
- Prevent infinite loops when updating both fields.
- Focus on functionality over styling.
- The component should work out-of-the-box in a live React preview (e.g., CodeSandbox/Sandpack).