@@ -43,7 +43,26 @@ const backup = new BackupAction(store);
43
43
const hardwareWallet = new HardwareWalletAction ( store ) ;
44
44
45
45
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 )
47
66
. add ( 'Cover' , ( ) => < Cover store = { store } /> )
48
67
. add ( 'Choose Pin' , ( ) => < ChoosePin store = { store } auth = { auth } /> )
49
68
. add ( 'Confirm Pin' , ( ) => < ConfirmPin store = { store } auth = { auth } /> )
@@ -54,21 +73,4 @@ storiesOf('Screens', module)
54
73
. add ( 'MultiSig Home' , ( ) => < MultiSig_Home store = { store } /> )
55
74
. add ( 'Simplified Home2' , ( ) => < Simplified_Home2 store = { store } /> )
56
75
. 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