JSFiddle - React, Tailwind, and code Playground

by Oguz Gelal

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js"></script>

JavaScript

axios.get('https://api.ipify.org').then(res => {
  const ip = res.data;
  console.log(`Here is your IP: ${ip}`);
  // Use the `ip` variable here
})