vim-jsx-utils
vim-jsx-utils copied to clipboard
A plugin that turns POJO -> JSX attrs
Example:
{
a: 1,
b: 2,
c: 3,
}
<MyComponent [CURSOR HERE] />
<MyComponent a={1} b={2} c={3} />