/* eslint-disable react/jsx-props-no-spreading */ import React from 'react'; import { Tabs as MuiTabs, Tab as MuiTab, TabsProps, TabProps, } from '@mui/material'; import styles from './Tabs.module.scss'; interface TabPanelProps { index: number; value: number; children: React.ReactNode; } export function Tabs({ children, value, onChange }: TabsProps) { return ( {children} ); } export function Tab({ label, ...rest }: TabProps) { return ( ); } export function TabPanel({ children, value, index, ...other }: TabPanelProps) { return ( ); }