Last active
February 10, 2019 00:14
-
-
Save nadeesha/bb95f168e23945cd48ee42c1a70d5b96 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://github.com/ReactTraining/react-router/blob/master/packages/react-router/docs/api/Route.md#children-func | |
const ListItemLink = ({ to, ...rest }) => ( | |
<Route path={to}> | |
{({match}) => ( | |
<li className={match ? "active" : ""}> | |
<Link to={to} {...rest} /> | |
</li> | |
)} | |
</Route> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment