index.js 264 B

1234567891011
  1. /**
  2. * @format
  3. */
  4. import {AppRegistry} from 'react-native';
  5. // import AsyncStorage from '@react-native-async-storage/async-storage';
  6. import App from './jscore/App';
  7. import {name as appName} from './app.json';
  8. AppRegistry.registerComponent(appName, () => App);