upgade package

This commit is contained in:
CHIEFSOFT\ameye
2024-04-23 14:04:21 -04:00
parent ede879d821
commit 44f6fb0816
966 changed files with 7972 additions and 88698 deletions
@@ -0,0 +1,30 @@
import clsx from 'clsx'
import {useLayout} from '../../core'
import {Footer} from './Footer'
const FooterWrapper = () => {
const {config} = useLayout()
if (!config.app?.footer?.display) {
return null
}
return (
<div className='app-footer' id='kt_app_footer'>
{config.app.footer.containerClass ? (
<div
className={clsx(
'app-container',
config.app.footer.container === 'fixed' ? 'container-xxl' : 'container-fluid',
config.app.footer.containerClass
)}
>
<Footer />
</div>
) : (
<Footer />
)}
</div>
)
}
export {FooterWrapper}