Brandon Presley
9f02211d6a
Still need to work on: 1. Progress meter 2. Pause on tap 3. App icon 4. Dark/light mode detection 5. Height not being centered 6. Slide numbers on the bottom color
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import {AppRegistry} from 'react-native';
|
|
import App from './App';
|
|
import {name as appName} from './app.json';
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|