stuff for workshop 'First steps in react '
- Create app which will fetch rocket launches and display it on the page
- Add functionality to search by rocket name, reset search
- Add previous and next button
- *Add functionality to change per page count
- API URL: https://launchlibrary.net/1.3/launch/next/perPage?offset=offsetCount&name=query perPage - number of launches per page offsetCount - how many launches to skip query - value for search
Open launch library api is used for this task. More details https://launchlibrary.net/docs/1.3/api.html
Application was created using create-react-app boilerplate. More details https://github.com/facebook/create-react-app
Additionally you need to install 'prop-types' library. More details https://github.com/facebook/prop-types . To install simply run
npm install --save prop-types