// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import {StyleSheet, View} from 'react-native'; import DeviceInfo from 'react-native-device-info'; import FormattedText from '@components/formatted_text'; const style = StyleSheet.create({ info: { alignItems: 'center', justifyContent: 'flex-end', }, version: { fontSize: 12, }, }); const AppVersion = () => { return ( ); }; export default AppVersion;