10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
import React from 'react';
|
|
import SinglePostComponent from '../components/SinglePostComponent';
|
|
|
|
let SinglePost = ({ route }) => {
|
|
//console.log(route.params.postid)
|
|
return <SinglePostComponent postId={route.params.postid} />;
|
|
};
|
|
|
|
export default SinglePost;
|