tuyenpy / react-socket-chat-app

0 stars 0 forks source link

Action type không nên hard code #8

Open khoinguyen-corize opened 4 years ago

khoinguyen-corize commented 4 years ago

type: 'GET ROOM' không nên làm như vầy, cần tách ra 1 file vd như: actionTypes.js

export const GET_ROOM = 'GET_ROOM'

lúc sử dụng thì

import { GET_ROOM } from '../actionTypes.js'

export const getRoom = () => ({ type: GET_ROOM, });

tuyenpy commented 4 years ago

em đã tạo 1 file mới chứa các constant ạ