Context:
Sometimes we import Component like this:
import React, {Component} from 'react' ...extends Component ...
and other times like this:
import React from 'react' ...extends React.Component...
We should be consistent and use the same method everywhere