import { Text, View } from 'react-native'; import { EditScreenInfo } from './EditScreenInfo'; type ScreenContentProps = { title: string; path: string; children?: React.ReactNode; }; export const ScreenContent = ({ title, path, children }: ScreenContentProps) => { return ( {title} {children} ); }; const styles = { container: `items-center flex-1 justify-center`, separator: `h-[1px] my-7 w-4/5 bg-gray-200`, title: `text-xl font-bold`, };