diff --git a/src/components/Comments.tsx b/src/components/Comments.tsx
new file mode 100644
index 0000000..835a9ae
--- /dev/null
+++ b/src/components/Comments.tsx
@@ -0,0 +1,12 @@
+const Comments = () => {
+ return (
+
+
+ Comments
+
+
This guy sucks
+
+ );
+};
+
+export default Comments;
diff --git a/src/pages/Player.tsx b/src/pages/Player.tsx
index 3a74075..0dc3b08 100644
--- a/src/pages/Player.tsx
+++ b/src/pages/Player.tsx
@@ -6,6 +6,7 @@ import Stats from '@components/Stats';
import PlayerVote from '@components/PlayerVote';
import Description from '@components/Description';
import { useAuth } from '@contexts/AuthContext';
+import Comments from '@components/Comments';
const Player = () => {
const { user } = useAuth();
@@ -48,6 +49,7 @@ const Player = () => {
{player.stats && }
+
);