master
alex 2024-02-18 10:29:44 +01:00
parent 2245fad297
commit a53caa5fce
1 changed files with 6 additions and 1 deletions

View File

@ -34,6 +34,7 @@ import {
MyPlusIcon, MyPlusIcon,
} from "../../../Components/MyIcon"; } from "../../../Components/MyIcon";
import { MyEmpty } from "../../../Components/MyEmpty"; import { MyEmpty } from "../../../Components/MyEmpty";
import CountUp from "react-countup";
const { useBreakpoint } = Grid; const { useBreakpoint } = Grid;
@ -93,7 +94,11 @@ export default function StoreServices() {
paddingBottom: screenBreakpoint.xs ? 16 : 0, paddingBottom: screenBreakpoint.xs ? 16 : 0,
}} }}
> >
<h1>{t("storeServices.pageTitle")}</h1> <h1>
{t("storeServices.pageTitle")} {" ("}
<CountUp end={servicesData.services.length} />
{")"}
</h1>
<ModalAddEditService <ModalAddEditService
storeId={storeId} storeId={storeId}