openreplay/frontend/app/components/Dashboard/Widgets/PredefinedWidgets/CallWithErrors/ImageInfo.js
Андрей Бабушкин b822b1c067 applied eslint
2025-02-26 20:31:01 +01:00

15 lines
314 B
JavaScript

import React from 'react';
import { TextEllipsis } from 'UI';
import styles from './imageInfo.module.css';
function ImageInfo({ data }) {
return (
<div className={styles.name}>
<TextEllipsis text={data.urlHostpath} />
</div>
);
}
ImageInfo.displayName = 'ImageInfo';
export default ImageInfo;