aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/InviteScreen.js
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-02-08 12:21:31 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-02-08 12:21:31 +0100
commit2a25f02d74876d25dfacd3af45a8919122fa8a6a (patch)
treef7f3bf6a9588ea331a0c3af59c693c94d4033793 /src/containers/auth/InviteScreen.js
parent[MINOR] ADD blank line (diff)
downloadferdium-app-2a25f02d74876d25dfacd3af45a8919122fa8a6a.tar.gz
ferdium-app-2a25f02d74876d25dfacd3af45a8919122fa8a6a.tar.zst
ferdium-app-2a25f02d74876d25dfacd3af45a8919122fa8a6a.zip
REMOVE presentational stuff from smart container
Diffstat (limited to 'src/containers/auth/InviteScreen.js')
-rw-r--r--src/containers/auth/InviteScreen.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/containers/auth/InviteScreen.js b/src/containers/auth/InviteScreen.js
index e54d8d225..059888c99 100644
--- a/src/containers/auth/InviteScreen.js
+++ b/src/containers/auth/InviteScreen.js
@@ -14,12 +14,10 @@ export default class InviteScreen extends Component {
14 const { actions } = this.props; 14 const { actions } = this.props;
15 15
16 return ( 16 return (
17 <div className="auth__container auth__container--signup"> 17 <Invite
18 <Invite 18 onSubmit={actions.user.invite}
19 onSubmit={actions.user.invite} 19 embed={false}
20 embed={false} 20 />
21 />
22 </div>
23 ); 21 );
24 } 22 }
25} 23}