import React from 'react'; import { Card, CardTitle, CardText, CardActions, Button } from 'react-toolbox'; // eslint-disable-next-line react/prefer-stateless-function export default class PageHome extends React.Component { constructor(props) { super(props); this.state = { cards: [ { key: 0, title: 'Math Test', description: 'Meow' }, ], }; } render() { return (
{this.state.cards.map(card => {card.description}
); } }