const React = require('react'); const PropTypes = require('prop-types'); 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
{remixes.length === 0 ? ( // TODO: style remix invitation Invite user to remix ) : ( )}
); }; RemixList.propTypes = { remixes: PropTypes.arrayOf(projectShape) }; module.exports = RemixList;