chapter 2

This commit is contained in:
Colin Diem
2022-04-14 21:57:50 -04:00
parent 6131eda9f6
commit 0c47db9001
36 changed files with 1294 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
import PostCell from 'src/components/Post/PostCell'
const PostPage = ({ id }) => {
return <PostCell id={id} />
}
export default PostPage