0

I use WebStorm and I have this plugin: https://github.com/idok/react-templates-plugin

Having it installed in my WebStorm I can type for example rcls and immediately have:

import React, {
    Component,
    PropTypes,
} from 'react';

class LocalizedText extends Component {
    render() {
        return (
            <div></div>
        );
    }
}

LocalizedText.propTypes = {};
LocalizedText.defaultProps = {};

export default LocalizedText;

I wonder if it is possible to find some file on my computer and make some changes (new lines and so on) manually?

Sorry if it's a silly question but I can't find the answer in google.

LazyOne
  • 158,824
  • 45
  • 388
  • 391
Red Day
  • 1
  • 2
  • 1
    just installed this plugin (v. 1.1.1) - `rcls` does nothing to me. However, looks like it's a live template added by the plugin. You can look for it in Preferences | Editor | Live Templates, React Templates. – lena Feb 01 '17 at 13:59
  • Thank you, Lena! Found it in Preferences | Editor | Live Templates, React Templates – Red Day Feb 21 '17 at 14:19

0 Answers0