UNPKG

react-native-oco-landi-module

Version:
17 lines (13 loc) 328 B
// index.js import { NativeModules, Platform } from "react-native"; const { OCOLandiModule } = NativeModules; const Align = { LEFT: 0, CENTER: 1, RIGHT: 2, }; if (Platform.OS === "android" && !OCOLandiModule) { throw new Error("OCOLandiModule not linked properly"); } export { Align }; export default OCOLandiModule;