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.