Preview:
class connectionInitial extends React.Component {
  componentDidMount() {
    const apiUrl = "http://127.0.0.1:8000/api/profile/";
    fetch(apiUrl)
      .then((response) => response.json())
      .then((data) => console.log(data));
  }
  render() {
    return <div>Test connection</div>;
  }
}

export default connectionInitial;
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter