import React from 'react'; import PropTypes from 'prop-types'; import { MetadataProvider } from './hooks'; import { Table, DetailEditor, CellFormatter } from './components'; import Context from './context'; const SeafileMetadata = ({ ...params }) => { return ( ); }; SeafileMetadata.propTypes = { collaborators: PropTypes.array, collaboratorsCache: PropTypes.object, updateCollaboratorsCache: PropTypes.func, }; export default SeafileMetadata; export { Context, DetailEditor, CellFormatter, };