0

I just installed Netbeans 12 and I am diving into react.js. I was wondering if a react snippet plugin exists? Just as for visual studio (React/Redux/GraphQL/React-Native snippets)?

regards

alex
  • 4,804
  • 14
  • 51
  • 86

1 Answers1

0

Go to Preferences -> Editor -> Code Templates

You can create as many of these as you like for the supported languages. Just press tab after the keys. For example simply typing in "ae" + [TAB] on your keyboard will produce the following code snippet:

afterEach(function () {
   
});

Netbeans snippet help - no plugin necessary

Daniel Maldonado
  • 314
  • 4
  • 19