Files
cartlog-admin/src/app/[lng]/(mainLayout)/currency/page.js
2026-01-01 15:25:19 +05:30

16 lines
456 B
JavaScript

'use client'
import { useState } from "react";
import { Col } from "reactstrap";
import AllCurrency from "@/components/currency/AllCurrency";
import { currency } from "@/utils/axiosUtils/API";
const Currency = () => {
const [isCheck, setIsCheck] = useState([]);
return (
<Col sm="12">
<AllCurrency url={currency} moduleName="Currency" isCheck={isCheck} setIsCheck={setIsCheck} />
</Col>
)
}
export default Currency