import React from 'react' import { storiesOf } from '@storybook/react' import _ from 'lodash' import Price from './price' const list = [0, 10839, 2345454545, 1000, 12310, 10000000, -10, -226, -1000, -1000002323] storiesOf('其他/Price', module).add('default', () => (
{_.map(list, (v) => (
))}
))