function TabPanel()

in src/components/Tabs/index.tsx [82:94]


function TabPanel({ children, value, index, paddingContentArea, ...props }: TabPanelProps) {
    return (
        <Typography
            component="div"
            role="tabpanel"
            hidden={value !== index}
            id={`tabpanel-${index}`}
            data-testid={props['data-testid']}
        >
            <Box py={paddingContentArea ? 3 : undefined}>{children}</Box>
        </Typography>
    );
}