forked from UKSOURCE/hailearning.edu.vn
14 lines
229 B
TypeScript
14 lines
229 B
TypeScript
import FooterTop from './FooterTop';
|
|
import FooterBottom from './FooterBottom';
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<>
|
|
<FooterTop />
|
|
<FooterBottom />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|