Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit f995f59

Browse files
committed
Wire up wait screen
1 parent 3a27a85 commit f995f59

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/view/main.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import SeedSuccess from './seed-success';
1010
import SetPassword from './set-password';
1111
import Password from './password';
1212
import NewAddress from './new-address';
13+
import Wait from './wait';
1314
import Home from './home';
1415
import Payment from './payment';
1516
import PayLightningConfirm from './pay-lightning-confirm';
@@ -64,6 +65,7 @@ class MainView extends Component {
6465
{route === 'NewAddress' && (
6566
<NewAddress store={store} nav={nav} invoice={invoice} />
6667
)}
68+
{route === 'Wait' && <Wait />}
6769
{route === 'Home' && (
6870
<Home
6971
store={store}

stories/screen.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ import SeedVerify from '../src/view/seed-verify';
4343
import SetPassword from '../src/view/set-password';
4444
import Password from '../src/view/password';
4545
import NewAddress from '../src/view/new-address';
46+
import Wait from '../src/view/wait';
4647

4748
const store = new Store();
4849
store.init();
@@ -90,6 +91,7 @@ storiesOf('Screens', module)
9091
.add('New Address', () => (
9192
<NewAddress store={store} nav={nav} invoice={invoice} />
9293
))
94+
.add('Wait', () => <Wait />)
9395
.add('Home', () => (
9496
<Home
9597
store={store}

0 commit comments

Comments
 (0)