$ npm install react-native-owl-native-module --save
$ react-native link react-native-owl-native-module
import OwlNativeModule from 'react-native-owl-native-module';
OwlNativeModule.sqrNumber(someNum, (err, res) => {
if (res) { alert(res); }
if (err) { alert(err); }
});