ReactJS – 4.1. Class: Props, State và Global State

Author: - Posted: 15/07/21 - Update: 15/07/21

-- Props: truyền dữ liệu từ component cha cho component con
-- State: dữ liệu nội bộ của 1 component
-- Global State: dữ liệu của nhiều component -> thường dùng Redux

1. State

2. Props

-- Truyền dữ liệu từ component cha về component con bằng cách dùng props là ok
-- Ông component con truyền ngược lại cha bằng callback -> happy

ReactJS old