import React from 'react'; interface LinkProps { label: string; href: string; } const Link = ({ label, href }: LinkProps) => {label}; export default Link;