Skip to content

Commit

Permalink
Merge pull request #24152 from j-piasecki/@jpiasecki/use-legacy-gestu…
Browse files Browse the repository at this point in the history
…re-handler-web

Use legacy web implementation of Gesture Handler

(cherry picked from commit 591dd1a)
  • Loading branch information
Beamanator authored and OSBotify committed Aug 4, 2023
1 parent 539d64a commit 49f14c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
* @format
*/

import 'react-native-gesture-handler';
import {enableLegacyWebImplementation} from 'react-native-gesture-handler';
import {AppRegistry} from 'react-native';
import App from './src/App';
import Config from './src/CONFIG';
import additionalAppSetup from './src/setup';

enableLegacyWebImplementation(true);
AppRegistry.registerComponent(Config.APP_NAME, () => App);
additionalAppSetup();

0 comments on commit 49f14c6

Please sign in to comment.