From 59f3e80aaea8aef27c7d4262051e71bfb98c5742 Mon Sep 17 00:00:00 2001 From: Romero Date: Thu, 23 Apr 2026 08:24:34 -0600 Subject: [PATCH] me falto el commit --- nextprops/app/components/Post/Post.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nextprops/app/components/Post/Post.tsx b/nextprops/app/components/Post/Post.tsx index 0e4d0e1..a19ae43 100644 --- a/nextprops/app/components/Post/Post.tsx +++ b/nextprops/app/components/Post/Post.tsx @@ -10,10 +10,10 @@ type PostProps = { export default function Post({ userId, id, title, body }: PostProps) { return (
-

Post #{id}

+

ActivPost #{id}

{title}

{body}

-

Usuario #{userId}

+

Activ User #{userId}

); }