React Gallery Images Picker
npm install react-gallery-pickerGallery Picker with React js
===

See the Example Image Picker
React gallery picker is a React Js component for building image galleries and select images
Features of react-gallery-picker
* Table View
* Image Selection
```
npm install react-gallery-picker
Need more? See sample/src/index.js
`js
import Gallery from "react-gallery-picker";
const IMAGE1 = "/assets/images/1.jpg"
const IMAGE2 = "/assets/images/2.jpg"
const IMAGE3 = "/assets/images/3.jpg"
const IMAGE_LIST = [{ url: IMAGE1, name: "imagen 1" },{ url: IMAGE2, name: "imagen 2" } ,{ url: IMAGE3, name: "imagen 3" } ];
export default () => {
const getImages = images => {
// Do something with the selected images)
console.log(images);
}
return
}
`imagesRecivedProps
* : (required) Array of objects, see example above,original
* Available Properties
* - image src urlbase64
* - image base64returnImages
* : (required) Function that returns an array of objects with the Boolean property selected
``
git clone https://github.com/Daym3l/react-gallery-picker.git
cd react-gallery-picker
npm install
npm start
Then open localhost:3001` in a browser.
MIT