import React from 'react'; import { Text } from '../../primitives'; import { usePropsConfig } from '../../../theme'; import { TouchableItem } from './TouchableItem'; import type { IMenuGroupProps } from './props'; export const MenuGroup = ({ title, children }: IMenuGroupProps) => { const newProps = usePropsConfig('MenuGroup', {}); return ( <> {title} {children} ); };