Files
redwood-tutorial-part-1/web/src/pages/Post/PostPage/PostPage.js
Colin Diem 0c47db9001 chapter 2
2022-04-14 21:57:50 -04:00

8 lines
141 B
JavaScript

import PostCell from 'src/components/Post/PostCell'
const PostPage = ({ id }) => {
return <PostCell id={id} />
}
export default PostPage