first commit

This commit is contained in:
Kenneth Jannette
2024-01-11 18:24:41 -06:00
commit 4c1fb67383
103 changed files with 29954 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import React from "react";
const ProgressBar = (props) => {
const {
value,
total
} = props;
return (
<div className="progress-bar">
<div className="progress-bar-fill" style={{ width: `${Math.min(Math.ceil(100 * value / total), 100)}%` }} />
</div>
);
};
export default ProgressBar;