Rem stats
This commit is contained in:
@@ -18,10 +18,10 @@ export default function FamilyTable({ className, familyList }) {
|
||||
<td className="py-4">Name</td>
|
||||
<td className="py-4 text-center">Last Login</td>
|
||||
<td className="py-4 text-center">No of Tasks</td>
|
||||
<td className="py-4 text-right">Status</td>
|
||||
<td className="py-4 text-right"></td>
|
||||
</tr>
|
||||
{familyList?.length > 0 &&
|
||||
familyList?.map(({firstname, lastname, age}, idx) => (
|
||||
familyList?.map(({firstname, lastname, age,added}, idx) => (
|
||||
<tr className="bg-white dark:bg-dark-white border-b dark:border-[#5356fb29] hover:bg-gray-50" key={idx}>
|
||||
<td className=" py-4">
|
||||
<div className="flex space-x-2 items-center">
|
||||
@@ -37,7 +37,7 @@ export default function FamilyTable({ className, familyList }) {
|
||||
{`${firstname} ${lastname} (${age})`}
|
||||
</h1>
|
||||
<span className="text-sm text-thin-light-gray">
|
||||
Added <span className="text-purple">10-10-2029</span>
|
||||
Added <span className="text-purple">{` ${added}`}</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -13,7 +13,7 @@ import LtcIco from "../Helpers/Icons/LtcIco";
|
||||
import Usdt from "../Helpers/Icons/Usdt";
|
||||
import SelectBox from "../Helpers/SelectBox";
|
||||
import { NavLink } from "react-router-dom";
|
||||
import SideStatistics from "./SideStatistics";
|
||||
//import SideStatistics from "./SideStatistics";
|
||||
|
||||
export default function RightSideBar() {
|
||||
const filterDatas = ["Last 15 days", "Last Month", "Last 6 month"];
|
||||
@@ -201,7 +201,7 @@ export default function RightSideBar() {
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<SideStatistics />
|
||||
{/*<SideStatistics />*/}
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user