Skip to content

Instantly share code, notes, and snippets.

@robbertvancaem
Created December 9, 2019 08:30
Show Gist options
  • Save robbertvancaem/7b38dce0d56160e8b4c9fa879b235dd4 to your computer and use it in GitHub Desktop.
Save robbertvancaem/7b38dce0d56160e8b4c9fa879b235dd4 to your computer and use it in GitHub Desktop.
dynamic-routing-now-3
// pages/post.js
import React from 'react';
const Post = ({ slug }) => <div>{slug}</div>;
Post.getInitialProps = async ({ query }) => {
const { slug } = query;
return {
slug
}
}
export default Post;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment