123456789101112131415161718192021222324252627282930 |
- //© 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 (
- <React.Fragment>
- <span><a href="https://luzzu.adaptcentre.ie/">Luzzu Framework</a></span>
- <span className="ml-auto">Developed by <a href="mailto: ramneesh.vaidyambath2@mail.dcu.ie">Ramneesh Vaidyambath</a></span>
- </React.Fragment>
- );
- }
- }
- DefaultFooter.propTypes = propTypes;
- DefaultFooter.defaultProps = defaultProps;
- export default DefaultFooter;
|