react-syntax-jsx
Installation
SKILL.md
react-syntax-jsx
Quick Reference
JSX Compilation
JSX is syntactic sugar for React.createElement() calls. With the new JSX transform (React 17+, enabled by default in React 18/19), you do NOT need to import React for JSX to work:
// What you write:
<Button color="blue">Click me</Button>
// What the compiler produces (new transform):
import { jsx as _jsx } from 'react/jsx-runtime';
_jsx(Button, { color: 'blue', children: 'Click me' });
NEVER import React solely for JSX in React 18/19 projects — the new JSX transform handles it automatically.