1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Replace deprecated props.url in examples (#4953)

Following https://github.com/zeit/next.js/pull/4952

I found two examples with the deprecated`props.url` :
- `with-ioc`
- `with-next-routes`
This commit is contained in:
Luc 2018-08-13 23:12:03 +02:00 committed by Tim Neutkens
parent cf5dd4a0b9
commit b9081a5115
2 changed files with 6 additions and 2 deletions

View file

@ -1 +1 @@
export default props => <h1>About foo {props.url.query.foo} no `Link` ({typeof props.Link}) available here</h1>
export default props => <h1>About foo no `Link` ({typeof props.Link}) available here</h1>

View file

@ -1 +1,5 @@
export default props => <h1>About foo {props.url.query.foo}</h1>
import { withRouter } from 'next/router'
const About = ({router}) => <h1>About foo {router.query.foo}</h1>
export default withRouter(About)