import React, { ReactElement } from "react"; import PropTypes from "prop-types"; import ellipsize from "ellipsize"; import convert from "html-to-text"; import { escapePoundSymbol } from "../../shared/utils/formatting.utils"; import prettyBytes from "pretty-bytes"; import { LIBRARY_SERVICE_HOST } from "../../constants/endpoints"; import { Card } from "../Carda"; interface IMetadatPanelProps { value: any; children: any; } export const MetadataPanel = (props: IMetadatPanelProps): ReactElement => { console.log(props) return (
{props.children}
); }; export default MetadataPanel;