import React from 'react'; import classnames from 'classnames'; import { InfoCardProps } from 'src/types/op-info-card'; import './index.scss'; export default function OPInfoCard(props: InfoCardProps) { const { data, className, columns = 3 } = props; return (
{data.map((item, index) => (
{item.label}
{item.value}
))}
); }