forked from BLC/sgeUpdated
12 lines
266 B
JavaScript
12 lines
266 B
JavaScript
const Footer = () => {
|
|
return (
|
|
<p className='clearfix mb-0'>
|
|
<span className='float-md-right d-none d-md-block'>
|
|
BLC İletişim ve Güvenlik Sistemleri © {new Date().getFullYear()}
|
|
</span>
|
|
</p>
|
|
)
|
|
}
|
|
|
|
export default Footer
|