What is the benefit importing React, {Component} instead of just React?
问题 What is the major benefit of writing import React, { Component } from 'react'; class Link extends Component { ... } instead of import React from 'react'; class Link extends React.Component { ... } when it comes to react 15.4.x?? In my perspective and in my case (correct me if I am wrong) it does not matter at all since: I am using a webpack2 for making my bundles; I use code splitting to split my app code from vendor code; I use webpack.optimize.CommonsChunkPlugin plugin with minChunks: