import React, { Component, PropTypes } from 'react';
import { Card, CardText, CardTitle } from 'material-ui';

export default class NoEventsCard extends Component {

	render() {
    return (
      <Card initiallyExpanded={false}>
        <CardTitle titleStyle={{ fontSize: '18px' }} className="notifCard-title" title={this.props.title} showExpandableButton />
        <CardText expandable >
          {this.props.message}
        </CardText>
      </Card>
    );
	}
}

NoEventsCard.propTypes = {
  title: PropTypes.string,
  message: PropTypes.string,
};
