Rev 1146 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
import { TOPIC_ACTIONS } from './topics.types';export const addTopic = (topic) => ({type: TOPIC_ACTIONS.ADD_TOPIC,payload: topic});export const addCapsule = (capsule) => ({type: TOPIC_ACTIONS.ADD_CAPSULE,payload: capsule});export const addSlide = (slide) => ({type: TOPIC_ACTIONS.ADD_SLIDE,payload: slide});