UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

12 lines 367 B
import { useComponentDriver } from "../../testkit/new/Component.driver"; import { useScrollableDriver } from "../../testkit/new/useScrollable.driver"; export const CarouselDriver = props => { const driver = useScrollableDriver(useComponentDriver(props)); const scroll = props => { return driver.scroll(props); }; return { ...driver, scroll }; };