mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-08 18:38:00 +00:00
20 lines
280 B
JavaScript
20 lines
280 B
JavaScript
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
|
||
|
const propTypes = {
|
||
|
|
||
|
};
|
||
|
|
||
|
class DirOperationToolbar extends React.Component {
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<div></div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
DirOperationToolbar.propTypes = propTypes;
|
||
|
|
||
|
export default DirOperationToolbar;
|