project done
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import { SET_ALERT, REMOVE_ALERT } from './types';
|
||||
|
||||
export const setAlert = (msg, alertType, timeout = 5000) => dispatch => {
|
||||
const id = uuidv4();
|
||||
dispatch({
|
||||
type: SET_ALERT,
|
||||
payload: { msg, alertType, id }
|
||||
});
|
||||
|
||||
setTimeout(() => dispatch({ type: REMOVE_ALERT, payload: id }), timeout);
|
||||
};
|
||||
Reference in New Issue
Block a user