#100DAYSOFCODE Day100
Intermediate React Interview #
Demo Code
1: fetch Data
const [fetchData, setFetchData] = React.useState(null)
React.useEffect(() => {
fetch("https://randomuser.me/api/?results=20")
.then((response) => response.json())
.then((re...
haorong.hashnode.dev2 min read