import React, { Component} from 'react'; import Grid from '@material-ui/core/Grid'; import FlameLinkCollectionStructure from './FlameLinkCollectionStructure'; class FlameLinkCollectionComponentCreations extends Component { createCollectionEntries(schemaData, schemaContent, arr){ var collectionInfo = [schemaData, schemaContent]; return arr.map(this.createCollectionComponents, collectionInfo); } createCollectionComponents(num){ return } render() { return( {this.createCollectionEntries(this.props.schemaData, this.props.schemaContent, this.props.arr)} ); } } export default FlameLinkCollectionComponentCreations;