const React = window.React; const Component = React.Component; module.exports = class EventItem extends Component { constructor(props) { super(props); } render() { return (
  • {this.props.title}

    {this.props.date}

    {this.props.desc}

    {this.props.address}

    {this.props.month}

    {this.props.day}

  • ); } };