UNPKG

react-native-restart

Version:

Sometimes you want to reload your app bundle during app runtime. This package will allow you to do it.

18 lines 347 B
import { NativeModules } from "react-native"; const { RNRestart: rnRestart } = NativeModules; const Restart = reason => { if (!reason) { rnRestart.Restart(null); } else { rnRestart.Restart(reason); } }; const RNRestart = { ...rnRestart, restart: Restart, Restart }; export default RNRestart; //# sourceMappingURL=index.js.map