Refactor state

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-07-15 13:10:16 +03:00
parent de44828434
commit bd1dcd6809
8 changed files with 42 additions and 21 deletions

View File

@@ -1,6 +1,9 @@
import { AppRegistry } from 'react-native';
import 'react-native-get-random-values';
import { enableFreeze } from 'react-native-screens';
import App from './src/app';
import { name as appName } from './app.json';
import 'react-native-get-random-values';
enableFreeze(true);
AppRegistry.registerComponent(appName, () => App);