import React from 'react'; import { Popover, Button } from 'UI'; import MetaItem from '../MetaItem'; interface Props { list: any[]; maxLength: number; } export default function MetaMoreButton(props: Props) { const { list, maxLength } = props; return ( (
{list.slice(maxLength).map(({ label, value }, index) => ( ))}
)} placement="bottom" >
); }