import React from 'react'; import Box from '../../primitives/Box'; import type { ITabViewProps } from './types'; const TabView = ({ children, ...props }: ITabViewProps) => { return ( {children} ); }; export default React.memo(TabView);