Use functional component for Route
This commit is contained in:
parent
fc29c48013
commit
511b9e406c
@ -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;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user