Use functional component for Route

This commit is contained in:
Ken-Håvard Lieng 2017-05-19 07:28:08 +02:00
parent fc29c48013
commit 511b9e406c

View File

@ -1,15 +1,12 @@
import { PureComponent } from 'react';
import { connect } from 'react-redux'; import { connect } from 'react-redux';
import { createStructuredSelector } from 'reselect'; import { createStructuredSelector } from 'reselect';
class Route extends PureComponent { const Route = ({ route, name, children }) => {
render() { if (route === name) {
if (this.props.route === this.props.name) { return children;
return this.props.children;
}
return null;
} }
} return null;
};
const getRoute = state => state.router.route; const getRoute = state => state.router.route;