Removed some unneeded bits

This commit is contained in:
James Morris 2022-07-06 08:09:59 +01:00
parent 7493cda1a6
commit 63050013ca
2 changed files with 0 additions and 14 deletions

View File

@ -1,9 +0,0 @@
function Avatar() {
return (
<div className="flex justify-center items-center w-10 h-10 rounded-full bg-black">
<p className="text-white font-sans font-semibold">TK</p>
</div>
);
}
export default Avatar;

View File

@ -2,7 +2,6 @@ import React from 'react';
import AppContext from '../AppContext';
import NotSignedInBox from './NotSignedInBox';
import Form from './Form';
// import TotalComments from './TotalComments';
import Comment from './Comment';
import Pagination from './Pagination';
@ -48,10 +47,6 @@ class CommentsBox extends React.Component {
return (
<section className={containerClass}>
{/* <div className="flex justify-between items-end mb-6">
<h1 className="text-2xl font-sans font-bold tracking-tight dark:text-neutral-300">Members discussion</h1>
<TotalComments />
</div> */}
<Pagination />
<div className="mt-6">
{comments}