intellidev1991/react-native-image-slider-box

Was hoping you could give the usage examples with Function components

AnatuGreen opened this issue · 1 comments

Hi,
I was hoping you could give the usage examples with Function components since class components are gradually phasing off.

Thanks

import { SliderBox } from "react-native-image-slider-box";
const images = [
  "https://source.unsplash.com/1024x768/?nature",
  "https://source.unsplash.com/1024x768/?water",
  "https://source.unsplash.com/1024x768/?girl",
  "https://source.unsplash.com/1024x768/?tree", // Network image
];
const MyComponent = ()=>{
  return (
     <SliderBox
        images={images}
      />
  );
}