Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ismaeldevmw's full-sized avatar

Ismael López ismaeldevmw

  • me
  • Mexico
View GitHub Profile
@ismaeldevmw
ismaeldevmw / example.md
Created February 7, 2024 17:18
Archivo

‎‎​

@ismaeldevmw
ismaeldevmw / .eslintrc
Last active February 7, 2024 17:15
Configuration files
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": ["airbnb"],
"globals": {
"document": false,
"escape": false,
@ismaeldevmw
ismaeldevmw / useFetch.js
Last active February 7, 2024 17:14
Custom React Hooks
import { useEffect, useRef, useState } from 'react';
export const useFetch = ( url ) => {
const isMounted = useRef(true);
const [state, setState] = useState({ data: null, loading: true, error: null })
useEffect(() => {

Hi, I'm Ismael López

Web Developer and Computer Systems Engineer

Twitter: ismaellopezdev GitHub Ismael