//© 2019 Dublin City University, Trinity College Dublin. All rights reserved. This material may not be reproduced, displayed, modified or distributed without the express prior written permission of the copyright holder. import React, { Component } from 'react'; import PropTypes from 'prop-types'; const propTypes = { children: PropTypes.node, }; const defaultProps = {}; class DefaultFooter extends Component { render() { // eslint-disable-next-line const { children, ...attributes } = this.props; return ( Luzzu Framework Developed by Ramneesh Vaidyambath ); } } DefaultFooter.propTypes = propTypes; DefaultFooter.defaultProps = defaultProps; export default DefaultFooter;