"use client"; import React, { useState } from "react"; import { Col } from "reactstrap"; import AttributesTable from "@/components/attribute/AttributesTable"; import { attribute } from "@/utils/axiosUtils/API"; const AllAttributes = () => { const [isCheck, setIsCheck] = useState([]); return (