import React, { Component } from 'react' import { View, ScrollView } from 'react-native' import AppText from '../app-text' import styles from '../../styles/index' import labels from '../../i18n/en/settings' export default class AboutSection extends Component { render() { return ( {`${labels.aboutSection.title} `} {`${labels.aboutSection.segmentExplainer} `} ) } }