import React from 'react'; interface TabPropsType { tabTitle: string; } const Tab: React.FC = ({ children }) => { return (
{Array.isArray(children) ? children.map((child) => child) : children}
); }; export default Tab;