Data Fetching By API in react js
A. In Class Component componentDidMount() { fetch('http://127.0.0.1:8000/admin/menu-data') .then((response) => response.json()) .then(CategoryList => { this.setState({ menusData: CategoryList }); }); } A. In Functional…