// @flow import * as React from 'react'; import { observer, inject } from 'mobx-react'; import SharesStore from 'stores/SharesStore'; import ShareListItem from './components/ShareListItem'; import List from 'components/List'; import CenteredContent from 'components/CenteredContent'; import PageTitle from 'components/PageTitle'; import HelpText from 'components/HelpText'; type Props = { shares: SharesStore, }; @observer class Shares extends React.Component { componentDidMount() { this.props.shares.fetchPage({ limit: 100 }); } render() { const { shares } = this.props; return (

Share Links

Documents that have been shared appear below. Anyone that has the link can access a read-only version of the document until the link has been revoked. {shares.orderedData.map(share => ( ))}
); } } export default inject('shares')(Shares);