/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ 'use strict'; const React = require('react'); const { ProgressBarAndroid: ProgressBar, StyleSheet, View, } = require('react-native'); const BatchedBridge = require('react-native/Libraries/BatchedBridge/BatchedBridge'); const renderApplication = require('react-native/Libraries/ReactNative/renderApplication'); class ProgressBarSampleApp extends React.Component { state = {}; render() { return ( ); } } const ProgressBarTestModule = { renderProgressBarApplication: function(rootTag) { renderApplication(ProgressBarSampleApp, {}, rootTag); }, }; BatchedBridge.registerCallableModule( 'ProgressBarTestModule', ProgressBarTestModule, ); const styles = StyleSheet.create({ wrapper: { width: 200, }, }); module.exports = ProgressBarTestModule;