File size: 402 Bytes
41a71fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { Wrapper } from '@/shared/ui/Wrapper';
import { classNames } from '@/shared/lib/classNames';
import cls from './Footer.module.scss';
interface FooterProps {
className?: string;
}
export const Footer = ({ className }: FooterProps) => {
return (
<footer className={classNames(cls.Header, {}, [className])}>
<Wrapper>Подвал</Wrapper>
</footer>
);
};
|