1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-25 14:50:29 +00:00

init invite people

This commit is contained in:
ilearnit
2019-04-12 05:28:15 +00:00
committed by sniper-py
parent a29e8055bd
commit b119d78dfb
8 changed files with 91 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
import React, { Fragment } from 'react';
import PropTypes from 'prop-types';
import { gettext } from '../../utils/constants';
import InvitationsToolbar from '../../components/toolbar/invitations-toolbar';
class InvitationsView extends React.Component {
render() {
return (
<Fragment>
<InvitationsToolbar
onShowSidePanel={this.props.onShowSidePanel}
onSearchedClick={this.props.onSearchedClick}
/>
<div className="main-panel-center flex-row">
<div className="cur-view-container">
<div className="cur-view-path">
<h3 className="sf-heading">{gettext('Invite People')}</h3>
</div>
<div className="message empty-tip">
<h2>{gettext('You have not invited any people.')}</h2>
</div>
</div>
</div>
</Fragment>
);
}
}
export default InvitationsView;