mirror of
https://github.com/DocNR/POWR.git
synced 2025-05-11 00:35:54 +00:00
8 lines
329 B
TypeScript
8 lines
329 B
TypeScript
// components/pager/pager.native.tsx
|
|
import React from 'react';
|
|
import PagerView from 'react-native-pager-view';
|
|
import type { PagerProps, PagerRef } from './types';
|
|
|
|
const NativePager: React.ForwardRefExoticComponent<PagerProps> = PagerView as unknown as React.ForwardRefExoticComponent<PagerProps>;
|
|
|
|
export default NativePager; |