chore: rename seller wizard folders for the new order
This commit is contained in:
parent
3a6279056b
commit
e769aaa899
|
@ -39,12 +39,12 @@ import BuyContact from '../wizards/Buy/0_Contact';
|
|||
import BuyTrade from '../wizards/Buy/1_Trade';
|
||||
|
||||
// Sell
|
||||
import SellLocation from '../wizards/Sell/0_Location';
|
||||
import SellContact from '../wizards/Sell/1_Contact';
|
||||
import SellAsset from '../wizards/Sell/2_Asset';
|
||||
import SellPaymentMethods from '../wizards/Sell/3_PaymentMethods';
|
||||
import SellArbitrator from '../wizards/Sell/4_SelectArbitrator';
|
||||
import SellCurrency from '../wizards/Sell/5_Currency';
|
||||
import SellLocation from '../wizards/Sell/3_Location';
|
||||
import SellContact from '../wizards/Sell/4_Contact';
|
||||
import SellAsset from '../wizards/Sell/0_Asset';
|
||||
import SellPaymentMethods from '../wizards/Sell/1_PaymentMethods';
|
||||
import SellArbitrator from '../wizards/Sell/5_SelectArbitrator';
|
||||
import SellCurrency from '../wizards/Sell/2_Currency';
|
||||
import SellMargin from '../wizards/Sell/6_Margin';
|
||||
import SellLimits from '../wizards/Sell/7_Limits';
|
||||
|
||||
|
|
|
@ -4,9 +4,9 @@ import {storiesOf} from '@storybook/react';
|
|||
import {withInfo} from "@storybook/addon-info";
|
||||
import {action} from "@storybook/addon-actions";
|
||||
|
||||
import SellerAssets from '../../../src/js/wizards/Sell/2_Asset/components/SellerAssets';
|
||||
import SellerAssets from '../../../src/js/wizards/Sell/0_Asset/components/SellerAssets';
|
||||
|
||||
storiesOf('Wizards/Sell/2_Asset', module)
|
||||
storiesOf('Wizards/Sell/0_Asset', module)
|
||||
.add(
|
||||
"No Asset Selected",
|
||||
withInfo({inline: true})(() => (
|
||||
|
|
|
@ -4,9 +4,9 @@ import {storiesOf} from '@storybook/react';
|
|||
import {withInfo} from "@storybook/addon-info";
|
||||
import {action} from "@storybook/addon-actions";
|
||||
|
||||
import SellerPosition from '../../../src/js/wizards/Sell/0_Location/components/SellerPosition';
|
||||
import SellerPosition from '../../../src/js/wizards/Sell/3_Location/components/SellerPosition';
|
||||
|
||||
storiesOf('Wizards/Sell/0_Location', module)
|
||||
storiesOf('Wizards/Sell/3_Location', module)
|
||||
.add(
|
||||
"Without default location",
|
||||
withInfo({inline: true})(() => (
|
||||
|
|
|
@ -4,11 +4,11 @@ import {storiesOf} from '@storybook/react';
|
|||
import {withInfo} from "@storybook/addon-info";
|
||||
import {action} from "@storybook/addon-actions";
|
||||
|
||||
import SellerPaymentMethod from '../../../src/js/wizards/Sell/3_PaymentMethods/components/SellerPaymentMethod';
|
||||
import SellerPaymentMethod from '../../../src/js/wizards/Sell/1_PaymentMethods/components/SellerPaymentMethod';
|
||||
|
||||
const methods = ['Cash (In person)', 'Bank Transfer', 'International wire'];
|
||||
|
||||
storiesOf('Wizards/Sell/3_PaymentMethods', module)
|
||||
storiesOf('Wizards/Sell/1_PaymentMethods', module)
|
||||
.add(
|
||||
"Not Selected",
|
||||
withInfo({inline: true})(() => (
|
||||
|
|
|
@ -4,7 +4,7 @@ import {storiesOf} from '@storybook/react';
|
|||
import {withInfo} from "@storybook/addon-info";
|
||||
import {action} from "@storybook/addon-actions";
|
||||
|
||||
import FiatSelectorForm from '../../../src/js/wizards/Sell/5_Currency/components/FiatSelectorForm';
|
||||
import FiatSelectorForm from '../../../src/js/wizards/Sell/2_Currency/components/FiatSelectorForm';
|
||||
|
||||
const CURRENCY_DATA = [
|
||||
{id: 'USD', label: 'United States Dollar - USD'},
|
||||
|
|
|
@ -6,7 +6,7 @@ import {action} from "@storybook/addon-actions";
|
|||
|
||||
import MarginSelectorForm from '../../../src/js/wizards/Sell/6_Margin/components/MarginSelectorForm';
|
||||
|
||||
storiesOf('Wizards/Sell/5_Margin', module)
|
||||
storiesOf('Wizards/Sell/6_Margin', module)
|
||||
.add(
|
||||
"Default",
|
||||
withInfo({inline: true})(() => (
|
||||
|
|
Loading…
Reference in New Issue