Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

import { useState, useEffect } from 'react'
import axios from 'axios'

const baseURL = "http://localhost:3004"


function App() {
  const [products, setproducts] = useState(null)
  useEffect(() => {
    axios.get(baseURL).then((response) => {
      setproducts(response.data);
    });
  })
  return (
    <div >

    </div>
  );
}

export default App;

1 thought on “Hello world!”

Leave a Reply to A WordPress Commenter Cancel reply