react-native-image-slider-box
react-native-image-slider-box copied to clipboard
Was hoping you could give the usage examples with Function components
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}
/>
);
}