9
common/resources/client/uploads/formatted-bytes.tsx
Executable file
9
common/resources/client/uploads/formatted-bytes.tsx
Executable file
@@ -0,0 +1,9 @@
|
||||
import {Fragment, memo} from 'react';
|
||||
import {prettyBytes} from './utils/pretty-bytes';
|
||||
|
||||
interface FormattedBytesProps {
|
||||
bytes?: number;
|
||||
}
|
||||
export const FormattedBytes = memo(({bytes}: FormattedBytesProps) => {
|
||||
return <Fragment>{prettyBytes(bytes)}</Fragment>;
|
||||
});
|
||||
Reference in New Issue
Block a user