import React from 'react';
import { __ } from '@wordpress/i18n';

const Footer = () => {
    return (
        <div className='footer'>
            <h3>{__('Footer', 'lazytasks-project-task-management')}</h3>
        </div>
    );
}

export default Footer;
