import React from 'react'; export function CurrentCapacity(props: { currentCapacity: number }) { return ( <>
Current
{props.currentCapacity}
); }