mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Removed some unneeded bits
This commit is contained in:
parent
7493cda1a6
commit
63050013ca
2 changed files with 0 additions and 14 deletions
|
@ -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;
|
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue