import React, { Component } from "react";
import { Box, Typography } from "@mui/material";
import Link from "@mui/material/Link";
import dynamic from "next/dynamic";
const Chart = dynamic(() => import("react-apexcharts"), {
ssr: false,
});
class CourseCompletionList extends Component {
constructor(props) {
super(props);
this.state = {
series: [25],
series2: [50],
series3: [30],
series4: [50],
options: {
chart: {
offsetX: -8,
},
plotOptions: {
radialBar: {
hollow: {
size: "50%",
},
track: {
background: "#A9C8FB",
},
dataLabels: {
name: {
show: false,
},
value: {
offsetY: 3,
color: "#757FEF",
fontSize: "13px",
fontWeight: "500",
},
},
},
},
fill: {
colors: ["#757FEF"],
opacity: 1,
},
},
};
}
render() {
return (
<>
{/* Course completion 1 */}
Data With Python
5 Lessons
{/* Course completion 2 */}
Code Foundation
15 Lessons
{/* Course completion 3 */}
Styling With CSS
13 Lessons
{/* Course completion 4 */}
Code Learn
15 Lessons
>
);
}
}
export default CourseCompletionList;