import React from 'react'
import { storiesOf } from '@storybook/react'
import { Countdown } from 'components/UI'
storiesOf('Components.Countdown', module).addWithChapters('Countdown', {
chapters: [
{
sections: [
{
title: 'Default',
sectionFn: () =>
},
{
title: 'Stop after expire',
sectionFn: () =>
},
{
title: 'Custom colors',
sectionFn: () => (
)
}
]
}
]
})