style: adjust number to currency format

This commit is contained in:
caturbgs
2021-12-22 16:57:42 +07:00
parent aa2c658f69
commit 119fa6d0bd
7 changed files with 41 additions and 29 deletions

View File

@@ -1,11 +1,11 @@
import React, {useContext, useEffect, useState} from "react";
import {Button, Card, Col, Input, Row,message} from "antd";
import React, {useContext, useEffect} from "react";
import {Button, Card, Col, Input, message, Row} from "antd";
import {PlusSquareOutlined} from "@ant-design/icons";
import {BreadcumbComponent} from "../../component/BreadcumbComponent";
import {useStore} from "../../utils/useStore";
import {observer} from "mobx-react-lite";
import {LINKS} from "../../routes/app";
import {SubcategoryComponent} from "../../component/Subcategory";
import {SubcategoryComponent} from "../../component/SubcategoryComponent";
import {ModalLoaderContext} from "../../utils/modal";
const {Search} = Input;