AmitM30/react-native-typescript-boilerplate

View on GitHub
src/view/screens/settings/Component.tsx

Summary

Maintainability
A
1 hr
Test Coverage
import * as React from 'react';
import { SafeAreaView, View } from 'react-native';

import { GLOBAL } from '../../styles/global';
import { CTEXT } from '../../elements/custom';

export interface Props {}

const SETTINGS: React.FC<Props> = (props: Props) => (
  <SafeAreaView style={GLOBAL.LAYOUT.SafeArea}>
    <View style={GLOBAL.LAYOUT.pageContainer}>
      <CTEXT>{'Settings'}</CTEXT>
    </View>
  </SafeAreaView>
);

export default SETTINGS;