UNPKG

@p__radip/react-footer

Version:

This is a npm package for adding footer in your react-app

11 lines (10 loc) 266 B
import React from "react"; import "../../assets/styles/footer.css"; interface FooterProps { websiteName: string; bgColor?: string; className?: string; style?: React.CSSProperties; } declare const Footer: React.FC<FooterProps>; export default Footer;