import React from 'react'; import type { Certification } from '../../../types'; interface CertificationsProps { certifications: Certification[]; } const Certifications: React.FC = ({ certifications }) => { if (!certifications || certifications.length === 0) { return null; } return (

Licenses & Certifications

); }; export default Certifications;