mirror of
https://github.com/FranP-code/Pomodoro-Timer-with-Clockify-integration.git
synced 2025-10-12 23:52:30 +00:00
12 lines
332 B
JavaScript
12 lines
332 B
JavaScript
import React from 'react'
|
|
|
|
const Footer = (props) => {
|
|
return (
|
|
<footer className={props.darkMode ? 'made-with-love dark-mode-component' : 'made-with-love'}>
|
|
Made with 💓 by <a href="https://porfolio-franp.netlify.app" target="_blank">Francisco Pessano</a>
|
|
</footer>
|
|
)
|
|
}
|
|
|
|
export default Footer
|