import React from 'react'; import { Modal, Switch, Text, TextInput, View } from 'react-native'; import { connect } from 'react-redux'; import { _mapStateToProps, AbstractAppSettings } from './AbstractAppSettings'; import FormRow from './FormRow'; import styles from './styles'; import { translate } from '../../base/i18n'; /** * The native container rendering the app settings page. * * @extends AbstractAppSettings */ class AppSettings extends AbstractAppSettings { /** * Implements React's {@link Component#render()}, renders the settings page. * * @inheritdoc * @returns {ReactElement} */ render() { const { t } = this.props; return ( { t('profileModal.header') } ); } } export default translate(connect(_mapStateToProps)(AppSettings));