Repository URL to install this package:
|
Version:
0.14.1 ▾
|
import React from 'react'
import { storiesOf } from '@storybook/react'
import ProgressBar from 'atoms/ProgressBar'
storiesOf('atoms/ProgressBar', module)
.add('default', () => <ProgressBar currentValue={50} totalValue={100} />)
.add('color change', () => <ProgressBar currentValue={30} totalValue={100} barColor="green" />)