update
This commit is contained in:
@ -71,9 +71,11 @@ const ManageAccount = () => {
|
|||||||
// };
|
// };
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="container mx-auto p-5">
|
<div>
|
||||||
<h1 className="text-xl font-medium leading-none text-gray-900 p-5">Manage Account</h1>
|
<div className="container mx-auto p-5">
|
||||||
<DataTable columns={columns} data={dataAccount} />
|
<h1 className="text-xl font-medium leading-none text-gray-900 p-5">Manage Account</h1>
|
||||||
|
<DataTable columns={columns} data={dataAccount} />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@ -6,7 +6,7 @@ export const staticChartData = {
|
|||||||
{
|
{
|
||||||
x: 'Jan 01',
|
x: 'Jan 01',
|
||||||
y: 50
|
y: 50
|
||||||
},
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -54,136 +54,3 @@ export const staticChartData = {
|
|||||||
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
|
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// const staticChartData = {
|
|
||||||
// series: [
|
|
||||||
// {
|
|
||||||
// name: 'Sales',
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Jan',
|
|
||||||
// y: 20
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// name: 'Orders',
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Feb',
|
|
||||||
// y: 32
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Mar',
|
|
||||||
// y: 41
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Apr',
|
|
||||||
// y: 38
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'May',
|
|
||||||
// y: 50
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Jun',
|
|
||||||
// y: 47
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Jul',
|
|
||||||
// y: 62
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Aug',
|
|
||||||
// y: 51
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Sep',
|
|
||||||
// y: 25
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
|
|
||||||
// {
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Oct',
|
|
||||||
// y: 72
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Nov',
|
|
||||||
// y: 70
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// {
|
|
||||||
// data: [
|
|
||||||
// {
|
|
||||||
// x: 'Des',
|
|
||||||
// y: 100
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// ],
|
|
||||||
// options: {
|
|
||||||
// chart: {
|
|
||||||
// type: chartType,
|
|
||||||
// height: 350
|
|
||||||
// },
|
|
||||||
// title: {
|
|
||||||
// text: 'Overview',
|
|
||||||
// align: 'center'
|
|
||||||
// },
|
|
||||||
// xaxis: {
|
|
||||||
// categories: [
|
|
||||||
// 'Jan',
|
|
||||||
// 'Feb',
|
|
||||||
// 'Mar',
|
|
||||||
// 'Apr',
|
|
||||||
// 'May',
|
|
||||||
// 'Jun',
|
|
||||||
// 'Jul',
|
|
||||||
// 'Aug',
|
|
||||||
// 'Sep',
|
|
||||||
// 'Oct',
|
|
||||||
// 'Nov',
|
|
||||||
// 'Dec'
|
|
||||||
// ]
|
|
||||||
// },
|
|
||||||
// legend: {
|
|
||||||
// show: chartLegend === 'true'
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
|
|||||||
Reference in New Issue
Block a user