const React = require('react'); const PropTypes = require('prop-types'); const FormattedMessage = require('react-intl').FormattedMessage; const FlexRow = require('../../components/flex-row/flex-row.jsx'); const ThumbnailColumn = require('../../components/thumbnailcolumn/thumbnailcolumn.jsx'); const projectShape = require('./projectshape.jsx').projectShape; const RemixList = props => { const remixes = props.remixes; if (remixes.length === 0) return null; return (
{remixes.length === 0 ? ( // TODO: style remix invitation ) : ( )} ); }; RemixList.propTypes = { projectId: PropTypes.string, remixes: PropTypes.arrayOf(projectShape) }; module.exports = RemixList;