import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';

const styles = theme => ({
});

const Footer = ({ copyright }) => (
  <section>
    <p>
      {copyright}
    </p>
  </section>
);

Footer.propTypes = {
  copyright: PropTypes.string,
};

Footer.defaultProps = {
  copyright: ''
};


export default withStyles(styles)(Footer);
