FPSMS-frontend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 line
233 B

  1. "use client"
  2. interface Props { // params type
  3. }
  4. const DashboardProgressChart: React.FC<Props> = ({
  5. // params
  6. }) => {
  7. return (
  8. <>
  9. progress chart
  10. </>
  11. )
  12. }
  13. export default DashboardProgressChart