15 lines
274 B
TypeScript
15 lines
274 B
TypeScript
// Component Imports
|
|
import LayoutFooter from '@layouts/components/vertical/Footer'
|
|
import FooterContent from './FooterContent'
|
|
|
|
const Footer = () => {
|
|
return (
|
|
// <LayoutFooter>
|
|
// <FooterContent />
|
|
// </LayoutFooter>
|
|
<></>
|
|
)
|
|
}
|
|
|
|
export default Footer
|