17 lines
281 B
JavaScript
17 lines
281 B
JavaScript
import React from 'react'
|
|
import { CFooter } from '@coreui/react'
|
|
|
|
const AppFooter = () => {
|
|
return (
|
|
<CFooter>
|
|
<div>
|
|
|
|
<span className="ms-1">{new Date().getFullYear()} © CMP.</span>
|
|
</div>
|
|
|
|
</CFooter>
|
|
)
|
|
}
|
|
|
|
export default React.memo(AppFooter)
|