import React from 'react'; import cn from 'classnames'; import MetaItem from '../MetaItem'; import MetaMoreButton from '../MetaMoreButton'; interface Props { className?: string; metaList: any[]; maxLength?: number; } export default function SessionMetaList(props: Props) { const { className = '', metaList, maxLength = 14 } = props; return (