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:
parent
cf5dd4a0b9
commit
b9081a5115
|
@ -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>
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue