HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/BOoms/pro-oils.be/wwwroot/wp-content/plugins/otter-blocks/src/Components/Footer.js
/**
 * WordPress dependencies.
 */
const { __ } = wp.i18n;

const { Component } = wp.element;

class Footer extends Component {
	constructor() {
		super( ...arguments );
	}

	render() {
		return (
			<footer className="otter-footer">
				<div className="otter-container">
					{ __( 'No otters were harmed during the making of this plugin.' ) }
				</div>
			</footer>
		);
	}
}

export default Footer;