UNPKG

react-native-rnevents

Version:

The package was created for React Native. It allows to open webpages, make a phone call, call using Viber, Whatsapp and Telegram, take a keyboard event for hooks and make hooks components to work.

23 lines (20 loc) 737 B
/************************************************************************ * Copyright (c) Amur * https://github.com/AmurKhoyetsyan/react-native-rnevents.git * * React native RNEvents * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. *************************************************************************/ import BackHandlerEvent from "./src/BackHandlerEvent"; import KeyboardEvent from "./src/KeyboardEvent"; import Web from "./src/Web"; import CallPhone from "./src/CallPhone"; const RNEvents = { BackHandler: BackHandlerEvent, Keyboard: KeyboardEvent, Web: Web, Call: CallPhone }; module.exports = RNEvents;