REACT NATIVE WEB

yarn start → starts local server

localhost:3000 renders site

Basics

States and Hooks

	const [travel, setTravel] = useState({
        loading: false // check if api request is loading
        data: null
    })