react-native-reanimated-carousel
Version:
Simple carousel component.fully implemented using Reanimated 2.Infinitely scrolling, very smooth.
10 lines • 314 B
JavaScript
import React from "react";
export const LazyView = props => {
const {
shouldUpdate,
children
} = props;
if (!shouldUpdate) return /*#__PURE__*/React.createElement(React.Fragment, null);
return /*#__PURE__*/React.createElement(React.Fragment, null, children);
};
//# sourceMappingURL=LazyView.js.map