index.js 424 Bytes
Newer Older
wanli's avatar
wanli committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import './index.less'
import numeral from 'numeral';
import ChartCard from './ChartCard/ChartCard';
import Field from './Field/Field';
import MiniProgress from './MiniProgress';
// import MiniBar from './MiniBar/MiniBar';
// import MiniArea from './MiniArea/MiniArea';

const yuan = val => ${numeral(val).format('0,0')}`;

export {
    yuan,
    ChartCard,
    Field,
    MiniProgress,
    // MiniBar,
    // MiniArea
};