import { ROAD_TYPES_STATS } from "@/shared/variables/road-types"; import "./StatisticsSection.scss"; import { statiscsSectionStore } from "./statisticsSection.store"; const StatisticsSection = async () => { // const { getStatsCount, getErrorMessage } = statiscsSectionStore(); // const statistics = await getStatsCount(); // const error = getErrorMessage(); const mockArray = [ { category: 1, count: 132 }, { category: 2, count: 12 }, { category: 3, count: 1432 }, { category: 4, count: 18 }, { category: 5, count: 95 }, { category: 6, count: 54 }, ]; return (
); }; export default StatisticsSection;