1 2 3 4 5 6 7 8 9 10 11 12 13 14
import Copyright from '@components/Copyright/Copyright'; import FooterNav from '@components/FooterNav/FooterNav'; import styles from './Footer.module.scss'; const Footer = () => { return ( <footer className={styles.wrapper}> <Copyright /> <FooterNav /> </footer> ); }; export default Footer;