Skip to content

Instantly share code, notes, and snippets.

View MustakTalukder's full-sized avatar
🏠
Working from home

Md. Mustak Talukder MustakTalukder

🏠
Working from home
  • Frankfurt, Germany
View GitHub Profile
import React, { useState, useEffect } from 'react';
function ContactsList(props) {
const [contactList, setcontactList] = useState([]);
const url = 'http://todorestapi.test'
const init = async () => {
const response = await fetch(url + '/api/contact/all');
const json = await response.json()