@momo-kits/carousel 0.89.1-rc.4 → 0.89.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.tsx +2 -1
- package/package.json +1 -1
package/index.tsx
CHANGED
|
@@ -18,7 +18,7 @@ const IS_ANDROID = Platform.OS === 'android';
|
|
|
18
18
|
const IS_IOS = Platform.OS === 'ios';
|
|
19
19
|
const screenWidth = Dimensions.get('window').width;
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
class Carousel extends React.PureComponent<
|
|
22
22
|
CarouselProps,
|
|
23
23
|
CarouselState
|
|
24
24
|
> {
|
|
@@ -826,4 +826,5 @@ export default class Carousel extends React.PureComponent<
|
|
|
826
826
|
}
|
|
827
827
|
}
|
|
828
828
|
|
|
829
|
+
export {Carousel}
|
|
829
830
|
export type {CarouselProps, CarouselRef};
|