-
-
Save velopert/7ccccaaa0867baf92e314c17e09f5daf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import BigText from '../components/BigText'; | |
const Post = ({params}) => { | |
return ( | |
<div> | |
<BigText>{params.id}</BigText> | |
</div> | |
); | |
}; | |
export default Post; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment