Skip to content

Instantly share code, notes, and snippets.

@aswinzz
Created January 25, 2019 19:47
Show Gist options
  • Save aswinzz/d936f9cfd9bfe0d41d73f1db8ae95099 to your computer and use it in GitHub Desktop.
Save aswinzz/d936f9cfd9bfe0d41d73f1db8ae95099 to your computer and use it in GitHub Desktop.
import {withRouter} from 'next/router'
import withData from '../config';
const Order = withRouter((props) => (
<div>
..........
{props.router.query.id}
...........
</div>
))
export default withData(Order);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment