mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-04 05:43:52 +01:00
21 lines
560 B
JavaScript
21 lines
560 B
JavaScript
import React from 'react';
|
|
import StyledWrapper from './StyledWrapper';
|
|
|
|
const ResponseTime = ({duration}) => {
|
|
let durationToDisplay = ''
|
|
|
|
if(duration > 1000 ) { // duration greater than a second
|
|
let seconds = Math.floor(duration / 1000);
|
|
let decimal = ((duration % 1000) / 1000) * 100;
|
|
durationToDisplay = seconds + '.' + decimal.toFixed(0) + 's';
|
|
} else {
|
|
durationToDisplay = duration + 'ms'
|
|
}
|
|
|
|
return (
|
|
<StyledWrapper className="mt-3 ml-4">
|
|
{durationToDisplay}
|
|
</StyledWrapper>
|
|
)
|
|
};
|
|
export default ResponseTime; |