Files
uldp.edu.vn/app/components/layout/Footer/Footer.tsx

14 lines
229 B
TypeScript

import FooterTop from './FooterTop';
import FooterBottom from './FooterBottom';
const Footer = () => {
return (
<>
<FooterTop />
<FooterBottom />
</>
);
};
export default Footer;