Remove unused constructor

This commit is contained in:
Oswaldo Acauan 2016-09-06 19:29:04 +00:00
parent 4cef1e85b4
commit 942e16951d
2 changed files with 0 additions and 8 deletions

View File

@ -21,10 +21,6 @@ const propTypes = {
};
export default class App extends Component {
constructor(props) {
super(props);
}
renderNavBar() {
const { navbar } = this.props;

View File

@ -17,10 +17,6 @@ const defaultProps = {
};
class AppContainer extends Component {
constructor(props) {
super(props);
}
render() {
// inject location on the navbar container
let navbarWithLocation = cloneElement(this.props.navbar, { location: this.props.location });