WebStorm,如何在react-templates中编辑模板?

时间:2017-02-01 13:25:35

标签: webstorm react-templates

我使用WebStorm,我有这个插件:https://github.com/idok/react-templates-plugin

将它安装在我的WebStorm中我可以输入例如rcls并立即输入:

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

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

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

export default LocalizedText;

我想知道是否有可能在我的电脑上找到一些文件并手动进行一些更改(换行等)?

很抱歉,如果这是一个愚蠢的问题,但我在谷歌找不到答案。

0 个答案:

没有答案