import React from 'react' import { Linking } from 'react-native' import AppPage from '../common/app-page' import AppText from '../common/app-text' import Segment from '../common/segment' import Button from '../common/button' import ButtonToButton from '../common/button-to-button' import labels from '../../i18n/en/settings' import links from '../../i18n/en/links' const AboutSection = () => { return ( {labels.aboutSection.text} {labels.philosophy.text} {labels.credits.note} {labels.donate.note} {require('../../package.json').version} ) } export default AboutSection