Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f4fc724

Browse files
committed
Screen Story Changes
1 parent 6bd6c1e commit f4fc724

File tree

1 file changed

+21
-19
lines changed

1 file changed

+21
-19
lines changed

src/stories/screen.stories.js

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,26 @@ const backup = new BackupAction(store);
4343
const hardwareWallet = new HardwareWalletAction(store);
4444

4545
storiesOf('Screens', module)
46-
.add('Theme Changer', () => <Theme_Changer store = {store} theme = {theme} />)
46+
.add('Theme Changer', () => <Theme_Changer store = {store} theme = {theme} />)
47+
48+
storiesOf('Screens/Onboarding', module)
49+
.add('New User', () => <BtcCoverNew store={store} />)
50+
.add('Existing User', () => <BtcCoverExisting store={store} />)
51+
.add('Product Intro' , () => <ProductIntro store = {store} />)
52+
53+
storiesOf('Screens/Wallet Cloud Backup', module)
54+
.add('Intro', () => <Intro store={store} />)
55+
.add('Password', () => <Password store={store} backup={backup}/>)
56+
.add('Backup', () => <Backup store={store}/>)
57+
.add('Confirmation', () => <Confirmation store={store}/>)
58+
59+
storiesOf('Screens/Harware Wallet Registration', module)
60+
.add('Import Settings', () => <ImportSettings store={store} hardwareWallet = {hardwareWallet}/>)
61+
.add('Wallet Identification', () => <Identification store={store} backup={backup}/>)
62+
.add('Address Verification', () => <AddressVerification store={store}/>)
63+
.add('Registration Success', () => <RegistrationSuccess store={store}/>)
64+
65+
storiesOf('Screens/MyMattress', module)
4766
.add('Cover', () => <Cover store={store} />)
4867
.add('Choose Pin', () => <ChoosePin store={store} auth={auth} />)
4968
.add('Confirm Pin', () => <ConfirmPin store={store} auth={auth} />)
@@ -54,21 +73,4 @@ storiesOf('Screens', module)
5473
.add('MultiSig Home', () => <MultiSig_Home store={store} />)
5574
.add('Simplified Home2', () => <Simplified_Home2 store={store} />)
5675
.add('Transaction', () => <Transaction store={store} />)
57-
.add('Receive', () => <Receive store={store} />);
58-
59-
storiesOf('Screens/Onboarding', module)
60-
.add('New User', () => <BtcCoverNew store={store} />)
61-
.add('Existing User', () => <BtcCoverExisting store={store} />)
62-
.add('Product Intro' , () => <ProductIntro store = {store} />)
63-
64-
storiesOf('Screens/Wallet Cloud Backup', module)
65-
.add('Intro', () => <Intro store={store} />)
66-
.add('Password', () => <Password store={store} backup={backup}/>)
67-
.add('Backup', () => <Backup store={store}/>)
68-
.add('Confirmation', () => <Confirmation store={store}/>)
69-
70-
storiesOf('Screens/Harware Wallet Registration', module)
71-
.add('Import Settings', () => <ImportSettings store={store} hardwareWallet = {hardwareWallet}/>)
72-
.add('Wallet Identification', () => <Identification store={store} backup={backup}/>)
73-
.add('Address Verification', () => <AddressVerification store={store}/>)
74-
.add('Registration Success', () => <RegistrationSuccess store={store}/>)
76+
.add('Receive', () => <Receive store={store} />);

0 commit comments

Comments
 (0)