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