You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
489 B
11 lines
489 B
import * as React from 'react';
|
|
import { View } from 'react-native';
|
|
import { maybeInitializeFabric } from './init';
|
|
export default function GestureHandlerRootView(props) {
|
|
// try initialize fabric on the first render, at this point we can
|
|
// reliably check if fabric is enabled (the function contains a flag
|
|
// to make sure it's called only once)
|
|
maybeInitializeFabric();
|
|
return /*#__PURE__*/React.createElement(View, props);
|
|
}
|
|
//# sourceMappingURL=GestureHandlerRootView.js.map
|