From 02d4c3f122dabef49ae8acfecc31c78287f33c9e Mon Sep 17 00:00:00 2001 From: Matt Kirby <MattJKirby@outlook.com> Date: Tue, 14 Mar 2023 19:02:53 +0000 Subject: [PATCH] Added post component --- .../src/components/post/Post.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 daily-thought-frontend/src/components/post/Post.tsx diff --git a/daily-thought-frontend/src/components/post/Post.tsx b/daily-thought-frontend/src/components/post/Post.tsx new file mode 100644 index 00000000..61a3b40a --- /dev/null +++ b/daily-thought-frontend/src/components/post/Post.tsx @@ -0,0 +1,14 @@ +const Post = () => { + + return ( + <> + <img + className="mx-auto h-10 w-10 rounded-full" + src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" + alt="" + /> + </> + ) +} + +export default Post \ No newline at end of file -- GitLab