In first example you got the whole exports through import React
, and you call Component
through react import. In second example you import Component
separately from React. That's why you don't need to write React.Component
. It's the same, but in different ways of import.