import React from 'react';
import {storiesOf} from '@storybook/react';
import {withInfo} from "@storybook/addon-info";
import IncludeSignatureForm from '../../src/js/components/tmp/IncludeSignatureForm';
const info = {inline: true, propTables: [IncludeSignatureForm.WrappedComponent]};
storiesOf('tmp/Signature Form', module)
.add(
"Empty Form",
withInfo(info)(() => (
))
)
.add(
"Form Loading",
withInfo(info)(() => (
))
)
.add(
"Form Loading + Hash",
withInfo(info)(() => (
))
)
.add(
"Form Success",
withInfo(info)(() => (
))
);