0 votes
in ReactJS by
AppRegistry in React Native

1 Answer

0 votes
by
AppRegistry

AppRegistry is the JavaScript entry point to run all React Native apps. It is the control point for registering, running, prerendering, and unmounting all apps. App root components should register themselves with AppRegistry.registerComponent. Apps can be run by invoking AppRegistry.runApplication.

To stop an application, call AppRegistry.unmountApplicationComponentAtRootTag with the tag that was passed into runApplication.

Related questions

+1 vote
asked May 29, 2020 in ReactJS by anonymous
0 votes
asked May 21, 2020 in ReactJS by GeorgeBell
...