Home > front end >  Is there a VSCode shortcut to wrap text in a react/react-native fragment?
Is there a VSCode shortcut to wrap text in a react/react-native fragment?

Time:06-29

I find myself using fragments pretty frequently and am looking to use a keyboard shortcut to make it easier.

CodePudding user response:

Add this to keybindings.json

{
    "key": "ctrl k f", //            
  • Related