import React, { Component } from 'react'; import { Link } from 'react-router-dom'; import PropTypes from 'prop-types'; import { Card, Button } from 'react-bootstrap'; export default class ServerCard extends Component { render() { return( {this.props.guild.name} {/* {`Icon
{this.props.guild.name}
Manage
*/}
) } } ServerCard.propTypes = { guild: PropTypes.object }