import React from 'react'; import { Text, View } from '@/components/ui'; import type { TxKeyPath } from '@/lib'; type Props = { children: React.ReactNode; title?: TxKeyPath; }; export const ItemsContainer = ({ children, title }: Props) => { return ( <> {title && {title}} { {children} } ); };