export interface SkillProps { label: string link?: string } export default function Skill({ label, link = '#' }: SkillProps) { return ( {label} ) }