import React from 'react' import { Popup } from 'UI' import cn from 'classnames' import MetaItem from '../MetaItem'; import MetaMoreButton from '../MetaMoreButton'; interface Props { className?: string, metaList: [] } const MAX_LENGTH = 3; export default function SessionMetaList(props: Props) { const { className = '', metaList } = props return (
{metaList.slice(0, MAX_LENGTH).map(({ label, value }, index) => ( ))} {metaList.length > MAX_LENGTH && ( )}
) }