import React, { Component } from 'react' import { ScrollView } from 'react-native' import Hyperlink from 'react-native-hyperlink' import AppText from '../app-text' import SettingsSegment from './settings-segment' import styles from '../../styles/index' import labels, { links } from '../../i18n/en/settings' import replace from '../helpers/replace-url-with-text' export default class AboutSection extends Component { render() { return ( {`${labels.aboutSection.text} `} {labels.philosophy.text} {`${labels.credits.note}`} {links.website.url} {require('../../package.json').version} ) } }