import React from 'react'; export interface BoardProps { board: any } export class BoardCard extends React.PureComponent { render() { const { board } = this.props; return (

{board.title}
{board.description}

); } }