import React from "react"; export interface FooterProps extends React.HTMLAttributes {} const Footer = React.forwardRef( ({ className, ...props }, ref) => { return ( ); }, ); export default Footer;