17 lines
403 B
JavaScript
17 lines
403 B
JavaScript
|
import React from "react";
|
||
|
import { connect } from "react-redux";
|
||
|
import {
|
||
|
selectUserInvitees,
|
||
|
selectUserInviteStatusIsPending,
|
||
|
} from "selectors/user";
|
||
|
import InviteList from "./view";
|
||
|
|
||
|
const select = state => ({
|
||
|
invitees: selectUserInvitees(state),
|
||
|
isPending: selectUserInviteStatusIsPending(state),
|
||
|
});
|
||
|
|
||
|
const perform = dispatch => ({});
|
||
|
|
||
|
export default connect(select, perform)(InviteList);
|