import React from "react"; import { Link } from "react-router-dom"; import "./index.scss"; export default function Footer(props: any) { const { links } = props; return ( ); } Footer.defaultProps = { links: [ { name: "تعرفه‌ها", link: "/subscribe" }, { name: "سوالات متداول", link: "/faq" }, { name: "درباره ما", link: "/contact" }, { name: "فروشگاه", link: "https://dnvn.ir/products" }, { name: "تماس با ما", link: "/contact" }, ], };