//Lib import classes from './StorageBar.module.css'; export default function StorageBar(props) { //Var //storageUsed is in octet, storageSize is in GB. Round to 1 decimal for %. const storageUsedPercent = ( ((props.storageUsed / 1000000) * 100) / props.storageSize ).toFixed(1); return (
{storageUsedPercent}% ( {(props.storageUsed / 1000000).toFixed(1)} GB /{' '} {props.storageSize} GB)
); }