import React from 'react'; interface ProductTabsProps { children: React.ReactNode; technicalData?: React.ReactNode; } export default function ProductTabs({ children, technicalData }: ProductTabsProps) { return (
{children}
{technicalData && (

Technical Specifications

{technicalData}
)}
); }