import React from 'react' import { ScrollView, View, BackHandler } from 'react-native' import AppText from './app-text' import { licenseText, shared } from '../i18n/en/labels' import styles,{secondaryColor} from '../styles' import Button from './button' import { saveLicenseFlag } from '../local-storage'; export default function License({setLicense}) { return ( {licenseText} ) }