import React from 'react' import placeholder from '../assets/placeholder.png' export default class Project extends React.Component { render() { let links = <>; if (this.props.links != null) { this.props.links.forEach(x => { links = ( <> {links} {x[1]} ) }) } else{ links = no links! } return (
  • {this.props.title}

    {this.props.children}

    {links}
  • ) } }