├── README.md ├── index.html ├── scripts └── main.jsx ├── styles └── main.scss └── todo.md /README.md: -------------------------------------------------------------------------------- 1 | # React-Image-Gallery 2 | Repository for How to Learn React and Create Stunning Image Gallery tutorial on [Alex Devero Blog](http://blog.alexdevero.com/learn-react-practice-create-gallery/). 3 | 4 | ## Assets: 5 | - Bootstrap 4 alpha framework hosted on [CDN](https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.5/css/bootstrap.min.css) 6 | - React library hosted on [CDN](https://cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react.js) 7 | - ReactDOM library hosted on [CDN](https://cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react-dom.min.js) 8 | 9 | ## Links: 10 | - Live demo on [CodePen](http://codepen.io/alexdevero/pen/pEXjmJ) 11 | - Tutorial on [Alex Devero Blog](http://blog.alexdevero.com/learn-react-practice-create-gallery/) 12 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |