Learn and Grow

On March 30, 2024 by YTLNH   1 comment
Learning app mern stackApp.jsimport React, { Component } from "react";import "./App.css";class Home extends Component {  BASE_URL = "http://localhost:8001/courses";  state = {    show: false,    data: [],    rating: 1,  };  componentDidMount = () => {    // Write your code here    this.handleGetData();  };  handleGetData...