UNPKG

395 BJavaScriptView Raw
1'use strict';
2
3import React from 'react';
4
5import { NativeModules, requireNativeComponent } from 'react-native';
6
7const NativeAppLoading = requireNativeComponent('ExponentAppLoading', null);
8
9export default class AppLoading extends React.Component {
10 componentWillUnmount() {
11 NativeModules.ExponentAppLoadingManager.finishedAsync();
12 }
13
14 render() {
15 return <NativeAppLoading />;
16 }
17}
18
\No newline at end of file