import ImmutablePropTypes from 'react-immutable-proptypes'; import PureRenderMixin from 'react-addons-pure-render-mixin'; const filename = url => url.split('/').pop().split('#')[0].split('?')[0]; const AttachmentList = React.createClass({ propTypes: { media: ImmutablePropTypes.list.isRequired }, mixins: [PureRenderMixin], render () { const { media } = this.props; return (
); } }); export default AttachmentList;