#100DAYSOFCODE Day75
Try to do the React Coding Interview
Link
1. make a counter
2. fetch data
function App() {
const [fetchData, setFetchData] = React.useState(null)
React.useEffect(() => {
fetch("https://randomuser.me/api")
.then((response) => response...
haorong.hashnode.dev2 min read