import * as React from 'react'; import { Text, View } from '../components/ui'; type Props = { text: string; }; export const Title = ({ text }: Props) => { return ( {text} ); };