15 lines
278 B
JavaScript

import React from "react";
const ChartSkeleton = () => {
return (
<div className="w-100">
<div
className="bg-secondary bg-opacity-10 rounded"
style={{ height: "300px", width: "100%" }}
/>
</div>
);
};
export default ChartSkeleton;