16 lines
456 B
JavaScript
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 |