diff options
Diffstat (limited to 'front/src/components/post')
-rw-r--r-- | front/src/components/post/Post.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/front/src/components/post/Post.tsx b/front/src/components/post/Post.tsx index 277c119..2965040 100644 --- a/front/src/components/post/Post.tsx +++ b/front/src/components/post/Post.tsx @@ -22,6 +22,7 @@ export interface PostProps { profile?: UserProfile; } function Post(props: PostProps) { + console.log("post", props); const { poast } = props; if (!poast || poast.contents === null) { return null; |