Ajax in React
Today I will share you the example that how ajax call can be done in react. You can choose any HTTP library but i will choose the axios. Here is the example this code will take reddit aww subreddit text and images from subreddt aww(cute pictures of animals). Here is the following code
import React from 'react'; import ReactDOM from 'react-dom'; import axios from 'axios'; class AjaxDemo extends React.Component { constructor(props) { super(props); this.state = { posts: [] }; } componentDidMount() {