diff --git a/app/components/AboutModal.js b/app/components/AboutModal.js index 41642bb..7e57dd6 100644 --- a/app/components/AboutModal.js +++ b/app/components/AboutModal.js @@ -1,36 +1,36 @@ import React from 'react'; import { Text, Linking } from 'react-native'; import PropTypes from 'prop-types'; import { Dialog, Portal, Surface, Title } from 'react-native-paper'; import KeyboardAwareDialog from './KeyBoardAwareDialog'; const DialogType = Platform.OS === 'ios' ? KeyboardAwareDialog : Dialog; import styles from '../assets/styles/blink/_AboutModal.scss'; function handleLink(event) { Linking.openURL('https://ag-projects.com'); } const AboutModal = (props) => { return ( About Sylk - Sylk mobile client is part of Sylk Suite, a set of - applications for real-time communications using SIP and WebRTC specifications + Sylk is part of Sylk Suite, a set of real-time + communications applications using IETF SIP protocol and WebRTC specifications. handleLink()} style={styles.link}>Copyright © AG Projects ); } AboutModal.propTypes = { show: PropTypes.bool.isRequired, close: PropTypes.func.isRequired }; export default AboutModal;