index.tsx 272 B

1234567891011
  1. import React, { FC, ReactNode } from 'react';
  2. import { Text } from 'react-native';
  3. import { styles } from './styles';
  4. type Props = {
  5. children: ReactNode;
  6. };
  7. export const BigText: FC<Props> = ({ children }) => {
  8. return <Text style={styles.text}>{children}</Text>;
  9. };