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

Technical Specifications

{technicalData}
)}
); }