update pay function

This commit is contained in:
2025-11-22 11:41:56 +08:00
parent a4b634abff
commit d8e4c737c5
397 changed files with 19572 additions and 9326 deletions

View File

@@ -0,0 +1,23 @@
'use client';
import dynamic from 'next/dynamic';
// import Chart from 'react-apexcharts';
const Chart = dynamic(() => import('react-apexcharts'), {
ssr: false
});
const BarChart = (props) => {
const { chartData, chartOptions } = props;
return (
// @ts-ignore
<Chart
options={chartOptions}
type="bar"
width="100%"
height="100%"
series={chartData}
/>
);
};
export default BarChart;