I want to recreate this multiply effect in my own snippet, but for a React component, as featured here:
Typing [componentName]*3
will create:
<ComponentName/>
<ComponentName/>
<ComponentName/>
If possible it would ideal if typing [componentName],*3
would create:
<ComponentName/>,
<ComponentName/>,
<ComponentName/> //note the missing comma here!
I was trying to figure this out from the Emmet and snippet documentation on the VSCode site but was unsuccessful.
Thanks!