This project was bootstrapped with Create React App and uses Bootstrap for stlying
App Can be viewed here Bank Details Lookup
This is a react app that fetched and show the bank details
Has two input, to select the city, and a filter term, post selection the App makes a call to https://vast-shore-74260.herokuapp.com/banks?city=KOLKATA which inturn returns a JSON Array with the following data
[
{
"ifsc": "DBSS0IN0828",
"bank_id": 130,
"branch": "KOLKATA",
"address": "4A, NANDLAL BASU SARANI KOLKATA 700071",
"city": "KOLKATA",
"district": "KOLKATA",
"state": "WEST BENGAL",
"bank_name": "DEVELOPMENT BANK OF SINGAPORE"
}
....
]The state is managed by Redux, asynchronous data fetching is provided by Redux Thunk.