Was hoping you could give the usage examples with Function components
AnatuGreen opened this issue · 1 comments
AnatuGreen commented
Hi,
I was hoping you could give the usage examples with Function components since class components are gradually phasing off.
Thanks
nebaaaazzzz commented
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}
/>
);
}