Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 875 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 875 Bytes

PUNK API

js-calculator

The Project 🔷

A React JS app where users can browse the entire BrewDog beers catalogue. Check out the Live Demo Here

The app was created by fetching Brewdog's Punk API and storing the object returned in a State. Users are able to search their favourite beers by name and/or filter the results by volume of alcohol, bitterness or acidity level.

const [beersArray, setBeersArray] = useState([])

useEffect(() => {
        fetch('https://api.punkapi.com/v2/beers?per_page=80')
        .then(response => {return response.json()})
        .then(jsonObject => {
            const beersObj = jsonObject;
            setBeersArray(beersObj)
        })
    }, [])