如何在大型代码库中跟踪 React JSX 中 Props 的来源?

Sah*_*i S 5 store reactjs react-jsx

在每个文件中,都有一组已定义Proptypes的组件将使用该文件中的组件。例如:

    const Drafts = React.createClass({
       propTypes: {
         drafts: React.PropTypes.array.isRequired
       },

       mixins: [State, Navigation],

       render() { 
       ...
      }
    });
Run Code Online (Sandbox Code Playgroud)

我要grep做什么?“草稿”?那是无效的。我还能如何找出store该变量来自哪个?