#reactjs
Read more stories on Hashnode
Articles with this tag
1. Chưa sử dụng customHook import {useState, useEffect} from 'react' export default function DocumentTitle() { const [count, setCount] =...
1. Import các thứ cần thiết import {useState, useEffect, useRef} from 'react' 2. Tạo ref const interValRef = useRef() 3. Tạo state timer const [timer,...
useRef giúp chúng ta thao tác và xử lý DOM 1. Import các thứ cần thiết import { useEffect, useRef } from 'react' 2. Tạo ref const inputRef =...
Cả hai hook này đều làm nhiệm vụ quản lí state, cùng tìm hiểu khi nào thì nên dùng hook tương ứng để đạt hiệu quả cao. ·...
1. Thông tin chung Sử dụng useEffect để lấy data Sử dụng axios để call API Phương thức GET URL: https://jsonplaceholder.typicode.com/posts/1 Sử dụng...
1. Các bước làm 1-1. Import useReducer import { useReducer } from 'react' 1-2. Khởi tạo giá trị ban đầu const initialState = { firstName: 'Ken',...