check_react_compatibility
Verify React feature compatibility with Chrome 37 to identify potential browser support issues and ensure code works as intended.
Instructions
Check compatibility of React-specific features and patterns for Chrome 37
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| features | Yes | React features to check (e.g., 'jsx', 'es6-class', 'arrow-functions', 'destructuring') | 
Input Schema (JSON Schema)
{
  "properties": {
    "features": {
      "description": "React features to check (e.g., 'jsx', 'es6-class', 'arrow-functions', 'destructuring')",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "features"
  ],
  "type": "object"
}