// @flow
import React from 'react';
import { storiesOf } from '@storybook/react';
import Button from './Button';
import Text from '../Text';
const ButtonText = 'CashTab Pay';
storiesOf('Button', module)
.add(
'default',
() => (
),
{
notes:
'Button is a stateful controlled component which is the primary visual indicator for the badger payment process'
}
)
.add(
'payment pending',
() => (
),
{
notes: 'Awaiting a confirmation or cancellation of Badger popup'
}
)
.add(
'payment complete',
() => (
),
{
notes: 'Payment received, at least on the front-end'
}
)
.add(
'install prompt',
() => (
),
{
notes: 'CashTab extension not installed, prompt user to install CashTab'
}
);