import React from "react"; import {Button, HStack, Image, Stack, Table, Tbody, Td, Text, Thead, Tr,} from "@chakra-ui/react"; import Header from "./Header"; const filterIcon = "https://firebasestorage.googleapis.com/v0/b/imagestorage-7b2d2.appspot.com/o/filterIcon.svg?alt=media&token=f5fa5ada-de63-45c4-b3b7-15d598a4b416"; const whiteDropArrow = "https://firebasestorage.googleapis.com/v0/b/imagestorage-7b2d2.appspot.com/o/whiteDropArrow.svg?alt=media&token=42732630-3807-49a8-888d-7077a4c9724b"; const Data = [ { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, { reward: "Learning to stand", booking: "0.0", offer: "0.0", cpa: "0.0", date: "0.0", status: "0", contact: "0%", }, ]; const LabsDashboardTable = () => { return (
{Data.map((item) => { return ( ); })}
Name Content Type Content Type Content Type Content Type Content Type Content Type
{item.reward} {item.offer} {item.cpa} {item.date} {item.status} {item.contact}
); }; export default LabsDashboardTable;