import { ChevronDown } from "react-feather" import Title from "@/components/TempDesignSystem/Text/Title" import { findBenefit, getUnlockedBenefits } from "@/utils/loyaltyTable" import BenefitValue from "../BenefitValue" import DesktopHeader from "./DesktopHeader" import styles from "./largeTable.module.css" import type { BenefitTableHeaderProps, LargeTableProps, } from "@/types/components/overviewTable" export default function LargeTable({ levels, activeLevel, Select, }: LargeTableProps) { return (
|
|
{levels.map((level, idx) => {
return (
|
)
})}
|---|