aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/InviteScreen.js
blob: 66afaf7e1ea5fb343538d454d222977ade61dafd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { inject, observer } from 'mobx-react';
import Invite from '../../components/auth/Invite';

export default @inject('stores', 'actions') @observer class InviteScreen extends Component {
  render() {
    const { actions } = this.props;

    return (
      <Invite
        onSubmit={actions.user.invite}
        embed={false}
      />
    );
  }
}

InviteScreen.wrappedComponent.propTypes = {
  actions: PropTypes.shape({
    user: PropTypes.shape({
      invite: PropTypes.func.isRequired,
    }).isRequired,
  }).isRequired,
};