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:
30
frontend/src/pages/invitations/invitations-view.js
Normal file
30
frontend/src/pages/invitations/invitations-view.js
Normal 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;
|
Reference in New Issue
Block a user