All files / components / layout / Footer.tsx

100.00% Branches 0/0
40.00% Lines 2/5
1
2
3
4
5
6
7
8
9
10
11
x2
 
 
 
 
 
 
 
 
 
x2









import FooterInteractive from "@islands/FooterInteractive.tsx";

interface FooterProps {
  className?: string;
}

const Footer = ({ className = "" }: FooterProps) => {
  return <FooterInteractive className={className} />;
};

export default Footer;