Add a space on README (#5574)

Hi
Just add a space on README. That line should be same as [here](https://github.com/zeit/next.js/blob/canary/examples/using-with-router/components/ActiveLink.js#L10)
This commit is contained in:
Homer Chen 2018-11-02 22:21:34 +11:00 committed by Tim Neutkens
parent c95abc209b
commit ad84d23a02

View file

@ -676,7 +676,7 @@ import { withRouter } from 'next/router'
const ActiveLink = ({ children, router, href }) => {
const style = {
marginRight: 10,
color: router.pathname === href? 'red' : 'black'
color: router.pathname === href ? 'red' : 'black'
}
const handleClick = (e) => {