import React, { PropTypes } from 'react'; function Sidebar(props) { return (
); } Sidebar.propTypes = { files: PropTypes.array.isRequired }; export default Sidebar;