14 lines
440 B
JavaScript
14 lines
440 B
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
/* eslint-disable no-unused-vars */
|
|
import {AppRegistry, Platform} from 'react-native';
|
|
|
|
import Mattermost from 'app/mattermost';
|
|
import ShareExtension from 'share_extension/android';
|
|
|
|
if (Platform.OS === 'android') {
|
|
AppRegistry.registerComponent('MattermostShare', () => ShareExtension);
|
|
}
|
|
|
|
const app = new Mattermost();
|